QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#122039#6309. AqreP3KOWA 1ms3572kbC++20736b2023-07-09 11:28:092023-07-09 11:28:25

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:28:25]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3572kb
  • [2023-07-09 11:28:09]
  • 提交

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(){
	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";
	}
}

详细

Test #1:

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

input:

3
2 2
3 4
3 8

output:

11
11
11

result:

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