QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#127163 | #6641. XOR Dice | arnold# | WA | 1ms | 3456kb | C++14 | 241b | 2023-07-19 13:38:07 | 2023-07-19 13:38:54 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int n,d;
int ycl[7]={0,1,1<<6,1<<12,1+1<<6,1+1<<12};
int main()
{
cin>>n>>d;
for(int i=1;i<=n;i++)
{
for(int j=0;j<=5;j++)cout<<ycl[j]*d<<" ";
cout<<endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3456kb
input:
3 2
output:
0 2 128 8192 256 16384 0 2 128 8192 256 16384 0 2 128 8192 256 16384
result:
ok Correct answer
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3412kb
input:
100 60
output:
0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 0 60 3840 245760 7680 491520 ...
result:
wrong answer Invalid output