QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#127193 | #6641. XOR Dice | arnold# | WA | 1ms | 3596kb | C++14 | 325b | 2023-07-19 13:58:29 | 2023-07-19 13:58:29 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int n,d;
int ycl[7]={1,1<<6,1<<12,1+(1<<6),1+(1<<12),1+(1<<6)+(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;
}
int num=(d*ycl[2]) ^ (d*ycl[1]) ^ (d*(ycl[5]));
cout<<num;
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3596kb
input:
3 2
output:
2 128 8192 130 8194 8322 2 128 8192 130 8194 8322 2 128 8192 130 8194 8322 2
result:
wrong output format Extra information in the output file