結果

問題 No.2112 All 2x2 are Equal
ユーザー shotoyooshotoyoo
提出日時 2022-10-28 21:55:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,372 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 85,460 KB
最終ジャッジ日時 2024-07-06 01:01:44
合計ジャッジ時間 7,229 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,448 KB
testcase_01 AC 38 ms
55,032 KB
testcase_02 AC 64 ms
69,896 KB
testcase_03 AC 55 ms
69,496 KB
testcase_04 AC 102 ms
80,872 KB
testcase_05 AC 112 ms
81,808 KB
testcase_06 AC 147 ms
84,712 KB
testcase_07 AC 91 ms
79,836 KB
testcase_08 AC 130 ms
83,560 KB
testcase_09 AC 60 ms
72,332 KB
testcase_10 AC 99 ms
80,300 KB
testcase_11 AC 84 ms
79,348 KB
testcase_12 AC 89 ms
79,524 KB
testcase_13 AC 145 ms
83,912 KB
testcase_14 AC 59 ms
70,756 KB
testcase_15 AC 120 ms
82,080 KB
testcase_16 AC 45 ms
61,636 KB
testcase_17 AC 131 ms
83,416 KB
testcase_18 AC 56 ms
69,368 KB
testcase_19 AC 61 ms
74,236 KB
testcase_20 AC 59 ms
71,416 KB
testcase_21 AC 130 ms
83,104 KB
testcase_22 AC 58 ms
70,904 KB
testcase_23 AC 58 ms
71,224 KB
testcase_24 AC 69 ms
77,952 KB
testcase_25 AC 72 ms
78,356 KB
testcase_26 AC 80 ms
77,616 KB
testcase_27 AC 81 ms
78,528 KB
testcase_28 AC 109 ms
80,744 KB
testcase_29 AC 71 ms
77,808 KB
testcase_30 AC 90 ms
79,656 KB
testcase_31 AC 116 ms
81,764 KB
testcase_32 AC 149 ms
85,360 KB
testcase_33 AC 154 ms
85,248 KB
testcase_34 AC 151 ms
85,460 KB
testcase_35 AC 162 ms
85,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

h,w = list(map(int, input().split()))
ans = [[0]*w for _ in range(h)]
v = 1
for i in range(0,h,2):
    for j in range(w):
        ans[i][j] = v
        v += 1
for i in range(1,h,2):
    for j in range(w)[::-1]:
        ans[i][j] = v
        v += 1
for j in range(0,w,2):
    vs = []
    for i in range(1,h,2):
        vs.append(ans[i][j])
    for i in range(1,h,2):
        ans[i][j] = vs.pop()
for j in range(1,w,2):
    vs = []
    for i in range(0,h,2):
        vs.append(ans[i][j])
    for i in range(0,h,2):
        ans[i][j] = vs.pop()
s = set()
for i in range(h-1):
    for j in range(w-1):
        s.add(ans[i][j]+ans[i+1][j]+ans[i][j+1]+ans[i+1][j+1])
assert len(s)==1
print("Yes")
for item in ans:
    write(" ".join(map(str, item)))
0