Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 631 Bytes

File metadata and controls

28 lines (20 loc) · 631 Bytes

BOJ-note

  • 알고리즘 풀이 노트
  • 북마크 된 문제를 풀 경우 몇 시간을 할애하던 "풀이 보지 않기"
  • C++ 사용

Python

파이썬 입력

  • 수행시간 빠른 입력
sys.stdin.readline()

C++

C++ 입출력

  • 수행시간이 빠른 입출력
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);