QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#619364 | #8041. Life is Hard and Undecidable, but... | mhw# | WA | 0ms | 3592kb | C++20 | 366b | 2024-10-07 13:59:55 | 2024-10-07 13:59:56 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using i64 = long long;
const i64 P = 998244353;
void solve() {
int n;
cin >> n;
n *= 2;
for (int i = 1; i <= n; i++) cout << i << ' ' << i << '\n';
}
int main() {
ios::sync_with_stdio(0); cin.tie(0), cout.tie(0);
int t = 1;
// cin >> t;
while (t--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3592kb
input:
1
output:
1 1 2 2
result:
wrong output format Extra information in the output file