QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#152576#6418. Ah, It's Yesterday Once MoreqzezWA 1ms3548kbC++141.0kb2023-08-28 12:33:352023-08-28 12:33:36

Judging History

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

  • [2023-08-28 12:33:36]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3548kb
  • [2023-08-28 12:33:35]
  • 提交

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\
11111111110111011101\n\
00000000010101010101\n\
11111111110101010101\n\
10000000000101010101\n\
11111111110101010101\n\
00000000010101010101\n\
11111111110101010101\n\
10000000000101010101\n\
11111111110101010101\n\
00000000010101010101\n\
11111111110101010101\n\
10000000000101010101\n\
11111111110101010101\n\
00000000010101010101\n\
11111111110101010101\n\
10000000000101010101\n\
11111111110101010101\n\
10101010010101010101\n\
01010101010101010101\n\
11111111111101110111\
");
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3548kb

input:



output:

20 20
11111111110111011101
00000000010101010101
11111111110101010101
10000000000101010101
11111111110101010101
00000000010101010101
11111111110101010101
10000000000101010101
11111111110101010101
00000000010101010101
11111111110101010101
10000000000101010101
11111111110101010101
00000000010101010101
...

result:

wrong answer 58 successful hack.