結果

問題 No.2112 All 2x2 are Equal
ユーザー tamatotamato
提出日時 2022-10-28 22:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 124,288 KB
最終ジャッジ日時 2024-07-06 01:51:23
合計ジャッジ時間 7,465 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 59 ms
71,808 KB
testcase_03 AC 57 ms
69,952 KB
testcase_04 AC 120 ms
94,408 KB
testcase_05 AC 133 ms
101,864 KB
testcase_06 AC 191 ms
119,028 KB
testcase_07 AC 101 ms
88,652 KB
testcase_08 AC 157 ms
109,652 KB
testcase_09 AC 66 ms
76,600 KB
testcase_10 AC 108 ms
91,720 KB
testcase_11 AC 93 ms
86,368 KB
testcase_12 AC 103 ms
88,448 KB
testcase_13 AC 163 ms
114,160 KB
testcase_14 AC 60 ms
74,508 KB
testcase_15 AC 145 ms
102,528 KB
testcase_16 AC 48 ms
62,208 KB
testcase_17 AC 156 ms
109,568 KB
testcase_18 AC 58 ms
69,376 KB
testcase_19 AC 72 ms
77,520 KB
testcase_20 AC 71 ms
76,520 KB
testcase_21 AC 169 ms
109,312 KB
testcase_22 AC 60 ms
73,472 KB
testcase_23 AC 56 ms
69,888 KB
testcase_24 AC 77 ms
79,360 KB
testcase_25 AC 81 ms
80,080 KB
testcase_26 AC 73 ms
78,260 KB
testcase_27 AC 91 ms
83,072 KB
testcase_28 AC 125 ms
96,396 KB
testcase_29 AC 80 ms
77,812 KB
testcase_30 AC 105 ms
88,192 KB
testcase_31 AC 143 ms
102,016 KB
testcase_32 AC 189 ms
124,108 KB
testcase_33 AC 196 ms
123,964 KB
testcase_34 AC 205 ms
124,288 KB
testcase_35 AC 208 ms
124,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    H, W = map(int, input().split())

    print("Yes")
    ans = [[0] * W for _ in range(H)]
    B = []
    for h in range(H):
        for w in range(W):
            if (h + w) & 1:
                B.append(h * W + w + 1)
            else:
                ans[h][w] = h * W + w + 1
    for h in range(H):
        for w in range(W):
            if (h + w) & 1:
                ans[h][w] = B.pop()
    for h in range(H):
        print(*ans[h])

    S = ans[0][0] + ans[0][1] + ans[1][0] + ans[1][1]
    for h in range(H - 1):
        for w in range(W - 1):
            assert ans[h][w] + ans[h+1][w] + ans[h][w+1] + ans[h+1][w+1] == S


if __name__ == '__main__':
    main()
0