QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#152408#6418. Ah, It's Yesterday Once Moreqzez#WA 1ms3572kbC++141.0kb2023-08-28 07:42:082023-08-28 07:42:08

Judging History

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

  • [2023-08-28 07:42:08]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3572kb
  • [2023-08-28 07:42:08]
  • 提交

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\
11000001000001000100\n\
01111111111111111110\n\
01010000000000000011\n\
01010111111111111010\n\
01010100001000001010\n\
01010101101011101010\n\
01010101001000101011\n\
01010101011110101010\n\
01010101010010101010\n\
01010101011010100011\n\
11010101010010111110\n\
01010101000010100010\n\
01010101111110101010\n\
11010100000000101011\n\
01010111111111101010\n\
01010000000000001010\n\
11011111111111111011\n\
01000000010000000010\n\
11111111010111111110\n\
00101010010000100000\
");
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:



output:

20 20
11000001000001000100
01111111111111111110
01010000000000000011
01010111111111111010
01010100001000001010
01010101101011101010
01010101001000101011
01010101011110101010
01010101010010101010
01010101011010100011
11010101010010111110
01010101000010100010
01010101111110101010
11010100000000101011
...

result:

wrong answer 6 successful hack.