# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
29076 | 2017-07-18T08:04:56 Z | 서규호(#1171) | Park (JOI17_park) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; int N; int main(){ N = 1400; printf("%d %d %d\n",3,N,N-1); for(int i=1; i<N; i++){ printf("%d %d\n",i-1,i); } return 0; }