結果

問題 No.2112 All 2x2 are Equal
ユーザー rlangevinrlangevin
提出日時 2024-03-18 12:23:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 270,104 KB
最終ジャッジ日時 2024-09-30 04:54:06
合計ジャッジ時間 11,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,396 KB
testcase_01 AC 38 ms
53,980 KB
testcase_02 AC 68 ms
80,352 KB
testcase_03 AC 59 ms
76,636 KB
testcase_04 AC 196 ms
165,348 KB
testcase_05 AC 197 ms
175,544 KB
testcase_06 AC 322 ms
270,104 KB
testcase_07 AC 138 ms
123,180 KB
testcase_08 AC 237 ms
218,660 KB
testcase_09 AC 75 ms
84,384 KB
testcase_10 AC 154 ms
141,604 KB
testcase_11 AC 121 ms
109,472 KB
testcase_12 AC 143 ms
128,976 KB
testcase_13 AC 293 ms
252,112 KB
testcase_14 AC 70 ms
81,708 KB
testcase_15 AC 239 ms
201,284 KB
testcase_16 AC 48 ms
64,944 KB
testcase_17 AC 240 ms
218,260 KB
testcase_18 AC 61 ms
76,056 KB
testcase_19 AC 79 ms
85,240 KB
testcase_20 AC 69 ms
79,696 KB
testcase_21 AC 278 ms
234,400 KB
testcase_22 AC 69 ms
81,668 KB
testcase_23 AC 68 ms
80,136 KB
testcase_24 AC 86 ms
88,884 KB
testcase_25 AC 95 ms
94,076 KB
testcase_26 AC 87 ms
90,932 KB
testcase_27 AC 127 ms
108,516 KB
testcase_28 AC 205 ms
173,704 KB
testcase_29 AC 92 ms
86,516 KB
testcase_30 AC 142 ms
122,768 KB
testcase_31 AC 205 ms
185,232 KB
testcase_32 AC 336 ms
257,604 KB
testcase_33 AC 283 ms
249,212 KB
testcase_34 AC 352 ms
257,340 KB
testcase_35 AC 282 ms
249,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def rot90(A):
    # 時計回りに90度回転
    return list(zip(*(A[::-1])))


H, W = map(int, input().split())
flag = 0
if W % 2 == 0:
    flag = 1
    H, W = W, H
    
N = H * W
Q = deque(range(1, N + 1))
ans = [[-1] * W for _ in range(H)]
for i in range(H//2):
    for j in range(W):
        if j % 2 == 0:
            ans[2 * i][j] = Q.popleft()
            ans[2 * i + 1][j] = Q.pop()
        else:
            ans[2 * i][j] = Q.pop()
            ans[2 * i + 1][j] = Q.popleft()
            
s = 0
for i in range(2):
    for j in range(2):
        s += ans[i][j]
        
if H % 2:
    ans[-1][0] = Q.popleft()
    for j in range(1, W):
        ans[-1][j] = s - ans[-1][j - 1] - ans[-2][j] - ans[-2][j - 1]
        
if flag:
    H, W = W, H
    ans = rot90(ans)
        
Sn, Ss = set(), set()
for i in range(H):
    for j in range(W):
        Sn.add(ans[i][j])
        
for i in range(H - 1):
    for j in range(W - 1):
        Ss.add(ans[i][j] + ans[i+1][j] +ans[i][j+1] +ans[i+1][j+1])
        
assert len(Sn) == H * W
assert len(Ss) == 1

print("Yes")
for a in ans:
    print(*a)
0