QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#152403#6418. Ah, It's Yesterday Once Moreqzez#RE 0ms0kbC++141.0kb2023-08-28 07:39:512023-08-28 07:39:53

Judging History

你现在查看的是最新测评结果

  • [2023-08-28 07:39:53]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2023-08-28 07:39:51]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
template<typename T>
ostream& operator << (ostream &out,const vector<T>&x){
	if(x.empty())return out<<"[]";
	out<<'['<<x[0];
	for(int len=x.size(),i=1;i<len;i++)out<<','<<x[i];
	return out<<']';
}
template<typename T>
vector<T> ary(const T *a,int l,int r){
	return vector<T>{a+l,a+1+r};
}
template<typename T>
void debug(T x){
	cerr<<x<<'\n';
}
template<typename T,typename ...S>
void debug(T x,S ...y){
	cerr<<x<<' ',debug(y...);
}
int main(){
    puts("\
20 20\n\
01000000000000000000\n\
01011111111111111110\n\
01010000000000000010\n\
01010111111111111010\n\
01010100001000001010\n\
01010101101011101010\n\
01010101001000101010\n\
01010101011110101010\n\
01010101010010101010\n\
01010101011010100010\n\
01010101010010111110\n\
01010101000010100010\n\
01010101111110101010\n\
01010100000000101010\n\
01010111111111101010\n\
01010000000000001010\n\
01011111111111111010\n\
01000000010000000010\n\
01111111010111111110\n\
00000000010000000000\
");
	return 1;
}

詳細信息

Test #1:

score: 0
Runtime Error

input:



output:

20 20
01000000000000000000
01011111111111111110
01010000000000000010
01010111111111111010
01010100001000001010
01010101101011101010
01010101001000101010
01010101011110101010
01010101010010101010
01010101011010100010
01010101010010111110
01010101000010100010
01010101111110101010
01010100000000101010
...

result: