結果

問題 No.2112 All 2x2 are Equal
ユーザー 👑 rin204rin204
提出日時 2022-10-28 21:44:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-07-06 00:51:22
合計ジャッジ時間 7,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 61 ms
72,776 KB
testcase_03 AC 60 ms
70,784 KB
testcase_04 AC 115 ms
79,872 KB
testcase_05 AC 127 ms
81,152 KB
testcase_06 WA -
testcase_07 AC 101 ms
78,712 KB
testcase_08 AC 148 ms
82,732 KB
testcase_09 AC 68 ms
76,800 KB
testcase_10 AC 107 ms
79,296 KB
testcase_11 AC 95 ms
78,464 KB
testcase_12 AC 103 ms
78,592 KB
testcase_13 WA -
testcase_14 AC 63 ms
74,676 KB
testcase_15 AC 133 ms
81,360 KB
testcase_16 AC 48 ms
62,336 KB
testcase_17 AC 147 ms
83,328 KB
testcase_18 WA -
testcase_19 AC 75 ms
76,800 KB
testcase_20 AC 65 ms
72,832 KB
testcase_21 AC 144 ms
82,496 KB
testcase_22 AC 63 ms
73,984 KB
testcase_23 WA -
testcase_24 AC 78 ms
76,928 KB
testcase_25 AC 81 ms
77,312 KB
testcase_26 WA -
testcase_27 AC 89 ms
77,800 KB
testcase_28 AC 124 ms
79,872 KB
testcase_29 AC 76 ms
76,928 KB
testcase_30 AC 101 ms
78,592 KB
testcase_31 AC 130 ms
81,280 KB
testcase_32 WA -
testcase_33 AC 171 ms
84,864 KB
testcase_34 AC 168 ms
85,248 KB
testcase_35 AC 177 ms
84,736 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):
        if j & 1:
            ii = h - 1 - i
        else:
            ii = i
        if i & 1:
            jj = w - 1 - j
        else:
            jj = j

        x = ii * w + jj + 1
        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