QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#127158 | #6641. XOR Dice | arnold# | Compile Error | / | / | C++14 | 242b | 2023-07-19 13:37:21 | 2023-07-19 13:37:23 |
Judging History
你现在查看的是最新测评结果
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-07-19 13:37:23]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2023-07-19 13:37:21]
- 提交
answer
#include<bits/s tdc++.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
answer.code:1:9: fatal error: bits/s tdc++.h: No such file or directory 1 | #include<bits/s tdc++.h> | ^~~~~~~~~~~~~~~~ compilation terminated.