QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#735322 | #8041. Life is Hard and Undecidable, but... | medicos | WA | 0ms | 3580kb | C++17 | 270b | 2024-11-11 19:13:59 | 2024-11-11 19:14:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
signed main() {
ios::sync_with_stdio(0), cin.tie(0);
int n;
cin >> n;
cout << 2 * n - 1 << "\n";
for (int i = -250; i < -250 + 2 * n - 1; ++i) {
cout << i << " " << 1 << "\n";
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3580kb
input:
1
output:
1 -250 1
result:
wrong answer Coordinate too small