QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#602791 | #8934. Challenge NPC | propane# | WA | 18ms | 3628kb | C++20 | 613b | 2024-10-01 12:51:52 | 2024-10-01 12:51:54 |
Judging History
answer
#include<iostream>
#include<cstring>
#include<vector>
using namespace std;
using LL = long long;
int main(){
#ifdef LOCAL
freopen("data.in", "r", stdin);
freopen("data.out", "w", stdout);
#endif
cin.tie(0);
cout.tie(0);
ios::sync_with_stdio(0);
int n = 1024, m = 512 * 512, c = 2;
cout << n << ' ' << m << ' ' << c << '\n';
for(int i = 1; i <= n; i++){
cout << i % 2 + 1 << ' ';
}
cout << '\n';
for(int i = 1; i <= n; i += 2){
for(int j = 2; j <= n; j += 2){
cout << i << ' ' << j << '\n';
}
}
}
详细
Test #1:
score: 0
Wrong Answer
time: 18ms
memory: 3628kb
input:
1
output:
1024 262144 2 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 ...
result:
wrong answer The graph is not correct