QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#739112 | #6418. Ah, It's Yesterday Once More | yhddd | WA | 0ms | 3560kb | C++14 | 2.8kb | 2024-11-12 20:54:02 | 2024-11-12 20:54:04 |
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++)s[i][j]=='1';
// }
// srand(time(NULL));
// int num=0;
// for(int t=1;t<=500;t++){
// for(int i=1;i<=n;i++){
// for(int j=1;j<=m;j++)vis[i][j]=s[i][j]=='1';
// }
// for(int i=1;i<=50000;i++){
// int op=rand()%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-1][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+1][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]=='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]=='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)++num;
// cout<<t<<" "<<cnt<<"\n";
// }
// if(num>=125)puts("ac");
// cout<<num<<"\n";
cout<<R"(20 20
10111101111101101110
11010110010110111011
01011011011011001101
11101101101101110110
10110110110110011011
11011011011011101101
01101101101100110111
10110110110111011001
10011011011001101110
11101101101110110011
10110110110011011101
11011011011101100111
01101101100110111001
10110110111011001110
10011011001101110011
11101101110110011101
10110110011011100111
11011011101100111001
10101100100111001110
11110111111001111011
)";
}
// \
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();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3560kb
input:
output:
20 20 10111101111101101110 11010110010110111011 01011011011011001101 11101101101101110110 10110110110110011011 11011011011011101101 01101101101100110111 10110110110111011001 10011011011001101110 11101101101110110011 10110110110011011101 11011011011101100111 01101101100110111001 10110110111011001110 ...
result:
wrong output format Expected EOF