QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#122043#6309. AqreP3KOWA 1ms3400kbC++20801b2023-07-09 11:33:462023-07-09 11:33:49

Judging History

This is the latest submission verdict.

  • [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:33:49]
  • Judged
  • Verdict: WA
  • Time: 1ms
  • Memory: 3400kb
  • [2023-07-09 11:33:46]
  • Submitted

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
//1011
//1101
//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==2)a[i][j]=0;
						else a[i][j]=1;
					}else if(i%4==3){
						if(j%4==3)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: 3400kb

input:

3
2 2
3 4
3 8

output:

11
11
1110
1011
1101
11101110
10111011
11011101

result:

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