QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#738582 | #6418. Ah, It's Yesterday Once More | yhddd | WA | 0ms | 3548kb | C++14 | 2.9kb | 2024-11-12 19:26:48 | 2024-11-12 19:26:48 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define mod 998244353ll
#define pii pair<int,int>
#define fi first
#define se second
#define mems(x,y) memset(x,y,sizeof(x))
#define pb push_back
#define db double
using namespace std;
const int maxn=200010;
const int inf=1e18;
inline int read(){
int x=0,f=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+(ch-48);ch=getchar();}
return x*f;
}
bool Mbe;
int n,m;
bool vis[25][25],tmp[25][25];
char s[25][25];
void work(){
// n=read(),m=read();
// for(int i=1;i<=n;i++){
// scanf("%s",s[i]+1);
// for(int j=1;j<=m;j++)vis[i][j]=s[i][j]=='1';
// }
// mt19937 rnd(time(0));
// for(int i=1;i<=5000;i++){
// int op=rnd()%4;
// if(op==0){
// for(int j=1;j<=n;j++){
// for(int k=1;k<=m;k++)if(vis[j][k]){
// if(j>1&&s[j][k]=='1')tmp[j-1][k]=1;
// else tmp[j][k]=1;
// }
// }
// }
// if(op==1){
// for(int j=1;j<=n;j++){
// for(int k=1;k<=m;k++)if(vis[j][k]){
// if(j<n&&s[j][k]=='1')tmp[j+1][k]=1;
// else tmp[j][k]=1;
// }
// }
// }
// if(op==2){
// for(int j=1;j<=n;j++){
// for(int k=1;k<=m;k++)if(vis[j][k]){
// if(k>1&&s[j][k]=='1')tmp[j][k-1]=1;
// else tmp[j][k]=1;
// }
// }
// }
// if(op==3){
// for(int j=1;j<=n;j++){
// for(int k=1;k<=m;k++)if(vis[j][k]){
// if(k<n&&s[j][k]=='1')tmp[j][k+1]=1;
// else tmp[j][k]=1;
// }
// }
// }
// for(int j=1;j<=n;j++){
// for(int k=1;k<=m;k++)vis[j][k]=tmp[j][k],tmp[j][k]=0;
// }
// // int cnt=0;
// // for(int j=1;j<=n;j++){
// // for(int k=1;k<=m;k++)cnt+=vis[j][k];
// // }
// // cout<<i<<" "<<op<<" "<<cnt<<"\n";
// }
// int cnt=0;
// for(int i=1;i<=n;i++){
// for(int j=1;j<=m;j++)cnt+=vis[i][j];
// }
// if(cnt>1)puts("hack");
// else puts("fail");
// for(int i=1;i<=n;i++){
// cout<<"puts(";
// for(int j=1;j<=m;j++)cout<<s[i][j];
// cout<<");"<<endl;
// }
puts("20 20");
puts("11111011111011111011");
puts("00101100101100101101");
puts("11110110110110110111");
puts("10011011011011011001");
puts("11101101101101101101");
puts("10110110110110110110");
puts("11011011011011011011");
puts("01101101101101101101");
puts("10110110110110110111");
puts("10011011011011011001");
puts("11101101101101101101");
puts("10110110110110110110");
puts("11011011011011011011");
puts("01101101101101101101");
puts("10110110110110110111");
puts("10011011011011011001");
puts("11101101101101101101");
puts("10110110110110110110");
puts("11011010011010011011");
puts("01101111101111101101");
}
// \
444
bool Med;
int T;
signed main(){
// freopen(".in","r",stdin);
// freopen(".out","w",stdout);
// ios::sync_with_stdio(0);
// cin.tie(0);cout.tie(0);
// cerr<<(&Mbe-&Med)/1048576.0<<" MB\n";
T=1;
while(T--)work();
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3548kb
input:
output:
20 20 11111011111011111011 00101100101100101101 11110110110110110111 10011011011011011001 11101101101101101101 10110110110110110110 11011011011011011011 01101101101101101101 10110110110110110111 10011011011011011001 11101101101101101101 10110110110110110110 11011011011011011011 01101101101101101101 ...
result:
wrong answer 50 successful hack.