QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#619364#8041. Life is Hard and Undecidable, but...mhw#WA 0ms3592kbC++20366b2024-10-07 13:59:552024-10-07 13:59:56

Judging History

This is the latest submission verdict.

  • [2024-10-07 13:59:56]
  • Judged
  • Verdict: WA
  • Time: 0ms
  • Memory: 3592kb
  • [2024-10-07 13:59:55]
  • Submitted

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