結果

問題 No.2112 All 2x2 are Equal
ユーザー ygussanyygussany
提出日時 2022-10-28 21:53:15
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-07-06 00:59:57
合計ジャッジ時間 5,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 34 ms
5,376 KB
testcase_05 AC 44 ms
5,376 KB
testcase_06 AC 77 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 65 ms
5,760 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 30 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 26 ms
5,376 KB
testcase_13 AC 68 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 52 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 60 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 57 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 9 ms
5,376 KB
testcase_25 AC 10 ms
5,376 KB
testcase_26 AC 7 ms
5,376 KB
testcase_27 AC 15 ms
5,376 KB
testcase_28 AC 38 ms
5,376 KB
testcase_29 AC 7 ms
5,376 KB
testcase_30 AC 26 ms
5,376 KB
testcase_31 AC 47 ms
5,632 KB
testcase_32 AC 81 ms
5,632 KB
testcase_33 AC 85 ms
5,632 KB
testcase_34 AC 82 ms
5,760 KB
testcase_35 AC 85 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int H, W;
	scanf("%d %d", &H, &W);
	printf("Yes\n");
	
	int i, j, k, ans[1001][1001];
	for (i = 1, k = 1; i <= H; i++) for (j = 2 - i % 2; j <= W; j += 2) ans[i][j] = k++;
	for (i = 1, k = H * W; i <= H; i++) for (j = i % 2 + 1; j <= W; j += 2) ans[i][j] = k--;
	for (i = 1; i <= H; i++) {
		for (j = 1; j <= W; j++) printf("%d ", ans[i][j]);
		printf("\n");
	}
	fflush(stdout);
	return 0;
}
0