This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
int k;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> k;
int n = 1;
while (n * (n - 1) / 2 < k) {
n++;
}
if (n * (n - 1) / 2 == k) {
cout << n << "\n";
for (int i = 0; i < n; i++) {
cout << i << " " << i - 1 << "\n";
}
} else {
n--;
cout << n + 1 << "\n";
for (int i = 0; i < n; i++) {
cout << i << " " << i - 1 << "\n";
}
cout << n << " " << k - n * (n - 1) / 2 - 1 << "\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |