結果

問題 No.2112 All 2x2 are Equal
ユーザー mkawa2mkawa2
提出日時 2022-10-28 23:29:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,572 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 108,784 KB
最終ジャッジ日時 2024-07-06 02:45:39
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,840 KB
testcase_01 AC 32 ms
53,556 KB
testcase_02 WA -
testcase_03 AC 49 ms
70,916 KB
testcase_04 AC 91 ms
79,652 KB
testcase_05 AC 126 ms
93,500 KB
testcase_06 AC 133 ms
84,504 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 51 ms
74,160 KB
testcase_10 AC 100 ms
87,308 KB
testcase_11 WA -
testcase_12 AC 82 ms
78,780 KB
testcase_13 AC 124 ms
83,296 KB
testcase_14 AC 51 ms
73,136 KB
testcase_15 AC 107 ms
81,376 KB
testcase_16 AC 42 ms
63,868 KB
testcase_17 WA -
testcase_18 AC 51 ms
68,800 KB
testcase_19 WA -
testcase_20 AC 57 ms
72,632 KB
testcase_21 AC 115 ms
82,592 KB
testcase_22 AC 50 ms
73,916 KB
testcase_23 AC 47 ms
69,972 KB
testcase_24 AC 67 ms
79,024 KB
testcase_25 AC 72 ms
80,000 KB
testcase_26 AC 64 ms
76,748 KB
testcase_27 AC 75 ms
77,952 KB
testcase_28 AC 98 ms
79,956 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 135 ms
84,876 KB
testcase_33 AC 189 ms
108,784 KB
testcase_34 AC 140 ms
84,868 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

h, w = LI()

if h == w == 3:
    print("Yes")
    print("1 5 3")
    print("9 8 7")
    print("4 2 6")

elif h & 1 and w & 1:
    print("No")

else:
    rot = False
    if w & 1:
        h, w = w, h
        rot = True

    aa = [[0]*w for _ in range(h)]
    a = 1
    for i in range(h):
        if i & 1:
            for j in range(0, w, 2)[::-1]:
                aa[i][j] = a
                a += 1
        else:
            for j in range(0, w, 2):
                aa[i][j] = a
                a += 1

    for i in range(h)[::-1]:
        if i & 1 == h & 1:
            for j in range(1, w, 2):
                aa[i][j] = a
                a += 1
        else:
            for j in range(1, w, 2)[::-1]:
                aa[i][j] = a
                a += 1

    if rot: aa = [col for col in zip(*aa)]

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