QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#127158#6641. XOR Dicearnold#Compile Error//C++14242b2023-07-19 13:37:212023-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]
  • 评测
  • [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;
}

詳細信息

answer.code:1:9: fatal error: bits/s tdc++.h: No such file or directory
    1 | #include<bits/s tdc++.h>
      |         ^~~~~~~~~~~~~~~~
compilation terminated.