[백준 C++] cpp 알고리즘 기본 템플릿
2023. 10. 1. 23:18ㆍ자료구조 및 알고리즘/백준
728x90
여기
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(0);
return 0;
}
728x90
'자료구조 및 알고리즘 > 백준' 카테고리의 다른 글
[백준] 2798번 블랙잭 (0) | 2023.08.03 |
---|---|
[백준] 10989번: 수 정렬하기 3 - 메모리 초과 문제 해결 (0) | 2023.08.02 |
[백준] 10814번: 나이순 정렬 (C++) - 삽질과 stable sort (0) | 2023.08.02 |
[백준] 1629번 곱셈 C++ (1) | 2023.07.09 |
[백준 C++] 1012번 유기농 배추 (0) | 2023.07.03 |