結果

問題 No.2112 All 2x2 are Equal
ユーザー 👑 rin204rin204
提出日時 2022-10-28 21:48:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 100,992 KB
最終ジャッジ日時 2024-07-06 00:54:52
合計ジャッジ時間 8,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 68 ms
74,240 KB
testcase_03 AC 64 ms
71,808 KB
testcase_04 AC 145 ms
86,272 KB
testcase_05 AC 164 ms
89,252 KB
testcase_06 AC 230 ms
99,584 KB
testcase_07 AC 121 ms
83,700 KB
testcase_08 AC 198 ms
94,724 KB
testcase_09 AC 77 ms
77,564 KB
testcase_10 AC 135 ms
84,992 KB
testcase_11 AC 110 ms
81,988 KB
testcase_12 AC 122 ms
83,072 KB
testcase_13 AC 208 ms
96,396 KB
testcase_14 AC 75 ms
77,184 KB
testcase_15 AC 172 ms
90,624 KB
testcase_16 AC 54 ms
63,744 KB
testcase_17 AC 199 ms
94,720 KB
testcase_18 AC 66 ms
71,424 KB
testcase_19 AC 84 ms
77,824 KB
testcase_20 AC 77 ms
77,568 KB
testcase_21 AC 199 ms
93,560 KB
testcase_22 AC 75 ms
76,672 KB
testcase_23 AC 65 ms
72,064 KB
testcase_24 AC 94 ms
78,464 KB
testcase_25 AC 95 ms
79,232 KB
testcase_26 AC 80 ms
77,824 KB
testcase_27 AC 104 ms
80,640 KB
testcase_28 AC 152 ms
87,192 KB
testcase_29 AC 89 ms
78,080 KB
testcase_30 AC 122 ms
83,584 KB
testcase_31 AC 172 ms
89,964 KB
testcase_32 AC 247 ms
100,964 KB
testcase_33 AC 237 ms
100,992 KB
testcase_34 AC 237 ms
100,480 KB
testcase_35 AC 241 ms
100,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())

A = [[0] * w for _ in range(h)]
for i in range(h):
    for j in range(w):
        x = i * w + j + 1
        A[i][j] = x
        x += 1

B = [[0] * w for _ in range(h)]
for i in range(h):
    for j in range(w):
        if i & 1:
            jj = w - 1 - j
        else:
            jj = j
        x = A[i][jj]
        B[i][j] = x
        x += 1

A = [[0] * w for _ in range(h)]
for i in range(h):
    for j in range(w):
        if j & 1:
            ii = h - 1 - i
        else:
            ii = i
        x = B[ii][j]
        A[i][j] = x
        x += 1

print("Yes")
for row in A:
    print(*row)

se = set()
for i in range(h - 1):
    for j in range(w - 1):
        se.add(A[i][j] + A[i + 1][j] + A[i][j + 1] + A[i + 1][j + 1])
assert len(se) == 1
0