QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#462943 | #6641. XOR Dice | grass8cow# | WA | 0ms | 3948kb | C++17 | 229b | 2024-07-04 10:10:01 | 2024-07-04 10:10:01 |
Judging History
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