Hueestory

[2741] N 찍기 (C++) 본문

PS(중단)/BOJ

[2741] N 찍기 (C++)

히명 2024. 4. 25. 14:45
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int n; cin >> n;

	for (int i = 1; i <= n; i++)
		cout << i << "\n";

	return 0;
}

 

 

"\n" 대신 endl 사용 시 시간 초과로 실패

=> endl는 단순 개행 뿐 아니라 버퍼를 비우는 작업까지 하기 때문

'PS(중단) > BOJ' 카테고리의 다른 글

[2884] 알람 시계 (C++)  (0) 2024.04.26
[2753] 윤년 (C++)  (0) 2024.04.25
[2739] 구구단 (C++)  (0) 2024.04.25
[2675] 문자열 반복 (C++)  (0) 2024.04.25
[2577] 숫자의 개수 (C++)  (0) 2024.04.25
Comments