QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#602791#8934. Challenge NPCpropane#WA 18ms3628kbC++20613b2024-10-01 12:51:522024-10-01 12:51:54

Judging History

你现在查看的是最新测评结果

  • [2024-10-01 12:51:54]
  • 评测
  • 测评结果:WA
  • 用时:18ms
  • 内存:3628kb
  • [2024-10-01 12:51:52]
  • 提交

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';
        }
    }

}

Details

Tip: Click on the bar to expand more detailed information

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