C++ 코테용 팁 정리

xyzw·2024년 7월 16일
0

C++

목록 보기
1/9
#include <bits/stdc++.h>
using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL); cout.tie(NULL);
	cout << "\n";
}
  • #include <bits/stdc++.h> : 알고리즘 문제 풀이용으로 좋은 헤더
  • ios_base::sync_with_stdio(false) : 시간 줄이기
  • cin.tie(NULL) : 시간 줄이기
  • \n : endl 대신 사용하면 시간 줄이기 유리

0개의 댓글