QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#154232 | #6309. Aqre | qzez# | WA | 0ms | 4052kb | C++14 | 1.2kb | 2023-08-31 15:22:08 | 2023-08-31 15:22:09 |
Judging History
answer
#include<bits/stdc++.h>
#define Gc() getchar()
#define Me(x,y) memset(x,y,sizeof(x))
#define Mc(x,y) memcpy(x,y,sizeof(x))
#define d(x,y) ((m)*(x-1)+(y))
#define R(n) (rnd()%(n)+1)
#define Pc(x) putchar(x)
#define LB lower_bound
#define UB upper_bound
#define fi first
#define se second
using namespace std;using ll=long long;using db=double;using lb=long db;using ui=unsigned;using ull=unsigned long long;using pii=pair<int,int>;using LL=__int128;
const int N=1e3+5,M=N*40+5,K=(1<<25)+5,mod=998244353,Mod=mod-1;const db eps=1e-9;const ll INF=1e18+7;mt19937 rnd(time(0));
int n,m,A[N][N];
void Solve(){
int i,j;scanf("%d%d",&n,&m);
for(i=1;i<=m;i++) if(i%4==0) A[1][i]=0;else A[1][i]=1;
for(i=1;i<=m;i++) if(i%4==2) A[2][i]=0;else A[2][i]=1;
for(i=1;i<=m;i++) if(i%4==1) A[3][i]=0;else A[3][i]=1;
for(i=1;i<=m;i++) if(A[1][i]&&A[2][i]&&A[3][i]) A[4][i]=0;else A[4][i]=1;
for(i=5;i<=n;i++) {
for(j=1;j<=m;j++) A[i][j]=A[i-4][j];
}
int tot=0;
for(i=1;i<=n;i++) for(j=1;j<=m;j++) tot+=A[i][j];
printf("%d\n",tot);
for(i=1;i<=n;i++) {
for(j=1;j<=m;j++) printf("%d",A[i][j]);printf("\n");
}
}
int main(){
int t;
scanf("%d",&t);
// t=1;
while(t--) Solve();
cerr<<clock()*1.0/CLOCKS_PER_SEC<<'\n';
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 4052kb
input:
3 2 2 3 4 3 8
output:
3 11 10 9 1110 1011 0111 18 11101110 10111011 01110111
result:
wrong answer ans finds a larger answer (test case 1)