結果

問題 No.2112 All 2x2 are Equal
ユーザー ntudantuda
提出日時 2022-10-29 14:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 120,688 KB
最終ジャッジ日時 2024-07-06 13:04:15
合計ジャッジ時間 8,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,620 KB
testcase_01 AC 35 ms
52,548 KB
testcase_02 AC 51 ms
72,124 KB
testcase_03 AC 49 ms
69,896 KB
testcase_04 AC 102 ms
92,708 KB
testcase_05 AC 121 ms
99,736 KB
testcase_06 AC 168 ms
115,884 KB
testcase_07 AC 88 ms
87,684 KB
testcase_08 AC 136 ms
107,416 KB
testcase_09 AC 56 ms
76,532 KB
testcase_10 AC 96 ms
90,740 KB
testcase_11 AC 82 ms
85,752 KB
testcase_12 AC 89 ms
87,368 KB
testcase_13 AC 151 ms
111,032 KB
testcase_14 AC 51 ms
73,820 KB
testcase_15 AC 119 ms
100,416 KB
testcase_16 AC 44 ms
62,648 KB
testcase_17 AC 138 ms
106,980 KB
testcase_18 AC 49 ms
69,256 KB
testcase_19 AC 58 ms
77,460 KB
testcase_20 AC 51 ms
72,572 KB
testcase_21 AC 134 ms
106,660 KB
testcase_22 AC 49 ms
72,736 KB
testcase_23 AC 48 ms
69,816 KB
testcase_24 AC 63 ms
78,688 KB
testcase_25 AC 66 ms
79,640 KB
testcase_26 AC 62 ms
78,404 KB
testcase_27 AC 78 ms
82,640 KB
testcase_28 AC 109 ms
94,716 KB
testcase_29 AC 64 ms
77,568 KB
testcase_30 AC 85 ms
87,308 KB
testcase_31 AC 121 ms
99,812 KB
testcase_32 AC 169 ms
120,288 KB
testcase_33 AC 166 ms
120,348 KB
testcase_34 AC 164 ms
120,200 KB
testcase_35 AC 166 ms
120,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
A = [[0] * W for _ in range(H)]
HW = H * W
D = (HW % 2) ^ 1
R = []
for i in range(HW):
        w = i % W
        h = i // W
        if (h - w) % 2 == 0:
            A[h][w] = i + 1
        else:
            R.append(i+1)
R.sort(reverse = True)
i = 0
for h in range(H):
    for w in range(W):
        if A[h][w] == 0:
            A[h][w] = R[i]
            i += 1
print("Yes")
for i in range(H):
    print(*A[i])
0