QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#462943#6641. XOR Dicegrass8cow#WA 0ms3948kbC++17229b2024-07-04 10:10:012024-07-04 10:10:01

Judging History

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

  • [2024-07-04 10:10:01]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3948kb
  • [2024-07-04 10:10:01]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int n,d;
int main(){
    scanf("%d%d",&n,&d);
    while(n--){
        printf("%d %d %d %d %d\n",d,d*64,d*(64+1),d*(64*64+64+1),d*(64*64+64),d*(64*64+1));
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3948kb

input:

3 2

output:

2 128 130 8322 8320
2 128 130 8322 8320
2 128 130 8322 8320

result:

wrong answer Invalid output