QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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;
}
詳細信息
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