풀어본 문제의 제출 코드를 기록하는 레포지토리입니다.
#include <bits/stdc++.h> #define endl "\n" #define all(x) (x).begin(), (x).end() #define sz(x) (int)(x).size() using namespace std; using lld = long long; using pii = pair<int, int>; using pll = pair<lld, lld>; // variable int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); // algorithm return 0; }PS 장인 한동규 씨로부터 영감을 받아 작성되었습니다.