QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#122041#6309. AqreP3KOWA 1ms3528kbC++20801b2023-07-09 11:31:152023-07-09 11:31:15

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-09 11:31:15]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3528kb
  • [2023-07-09 11:31:15]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

const int MAXN=1e3+5;
const int MAXM=1e3+5;

int n,m;
int a[MAXN][MAXM];

//1110
//1101
//1011
//0111

int main(){
	int t;cin>>t;
	while(t--){
		cin>>n>>m;
		if(max(n,m)<=3){
			for(int i=1;i<=n;i++){
				for(int j=1;j<=m;j++){
					a[i][j]=1;
				}
			}
		}else{
			for(int i=1;i<=n;i++)
				for(int j=1;j<=m;j++){
					if(i%4==1){
						if(j%4==0)a[i][j]=0;
						else a[i][j]=1;
					}else if(i%4==2){
						if(j%4==3)a[i][j]=0;
						else a[i][j]=1;
					}else if(i%4==3){
						if(j%4==2)a[i][j]=0;
						else a[i][j]=1;
					}else{
						if(j%4==1)a[i][j]=0;
						else a[i][j]=1;
					}
				}
		
		}
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				cout<<a[i][j];
			}
			cout<<"\n";
		}
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
2 2
3 4
3 8

output:

11
11
1110
1101
1011
11101110
11011101
10111011

result:

wrong answer Integer parameter [name=ans] equals to 11, violates the range [0, 4] (test case 1)