QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#104928#6309. AqrejeffqiWA 2ms3460kbC++231.2kb2023-05-12 15:30:032023-05-12 15:30:05

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-12 15:30:05]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:3460kb
  • [2023-05-12 15:30:03]
  • 提交

answer

#include<bits/stdc++.h>
#define rep(i,a,b) for (int i = (a); i <= (b); ++i)
#define drep(i,a,b) for (int i = (a); i >= (b); --i)
#define LL long long
#define pii pair<int,int>
#define pll pair<LL,LL>
#define fi first
#define se second
#define mp make_pair
#define eb emplace_back
#define all(v) v.begin(),v.end()
#define sz(v) ((int)v.size())
using namespace std;
LL read() {
	LL x = 0,y = 1; char ch = getchar(); while (!isdigit(ch)) {if (ch == '-') y = -y; ch = getchar();}
	while (isdigit(ch)) {x = x*10+ch-'0'; ch = getchar();} return x*y;
}
const int tst = 0,rd = 1; int getflg = 0;
namespace qiqi {
	const int N = 1e3+5; int n,m,rev,a[N][N];
	void main() {
		int ans = 0;
		n = read(); m = read();
		if (m < n) {
			rev = 1; swap(n,m);
		}
		if (n < 4) {
			rep(i,1,n) rep(j,1,m) {
				ans += a[i][j] = (j-1)%4 < 3;
			}
		}
		else {
			rep(i,1,n) rep(j,1,m) {
				ans += a[i][j] = i%4 != j%4;
			}
		}
		printf("%d\n",ans);
		if (!rev) {
			rep(i,1,n) {
				rep(j,1,m) printf("%d ",a[i][j]); puts("");
			}
		}
		else {
			rep(j,1,m) {
				rep(i,1,n) printf("%d ",a[i][j]); puts("");
			}
		}
	}
}
int main() {
	int T = read(); while (T--) qiqi::main(); return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 2ms
memory: 3460kb

input:

3
2 2
3 4
3 8

output:

4
1 1 
1 1 
9
1 1 1 0 
1 1 1 0 
1 1 1 0 
18
1 1 1 0 1 1 1 0 
1 1 1 0 1 1 1 0 
1 1 1 0 1 1 1 0 

result:

wrong answer Length must be equal to m (test case 1)