結果

問題 No.2112 All 2x2 are Equal
ユーザー ShirotsumeShirotsume
提出日時 2022-10-28 22:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,224 KB
最終ジャッジ日時 2024-07-06 01:10:41
合計ジャッジ時間 8,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 89 ms
75,172 KB
testcase_03 AC 63 ms
71,840 KB
testcase_04 AC 143 ms
90,240 KB
testcase_05 AC 165 ms
91,648 KB
testcase_06 AC 212 ms
93,568 KB
testcase_07 AC 121 ms
79,332 KB
testcase_08 AC 191 ms
92,088 KB
testcase_09 AC 74 ms
76,908 KB
testcase_10 AC 111 ms
80,128 KB
testcase_11 AC 96 ms
78,848 KB
testcase_12 AC 104 ms
79,080 KB
testcase_13 AC 169 ms
92,868 KB
testcase_14 AC 73 ms
77,012 KB
testcase_15 AC 152 ms
92,032 KB
testcase_16 AC 52 ms
64,128 KB
testcase_17 AC 160 ms
91,904 KB
testcase_18 AC 65 ms
71,680 KB
testcase_19 AC 78 ms
77,184 KB
testcase_20 AC 70 ms
74,368 KB
testcase_21 AC 156 ms
91,752 KB
testcase_22 AC 72 ms
76,928 KB
testcase_23 AC 63 ms
71,552 KB
testcase_24 AC 82 ms
77,628 KB
testcase_25 AC 86 ms
77,824 KB
testcase_26 AC 78 ms
77,568 KB
testcase_27 AC 91 ms
78,564 KB
testcase_28 AC 128 ms
91,264 KB
testcase_29 AC 85 ms
77,312 KB
testcase_30 AC 113 ms
78,976 KB
testcase_31 AC 143 ms
91,852 KB
testcase_32 AC 189 ms
94,224 KB
testcase_33 AC 189 ms
94,208 KB
testcase_34 AC 199 ms
94,080 KB
testcase_35 AC 218 ms
94,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

h, w = mi()

ans = [[0] * w for _ in range(h)]

s = deque(range(1, h * w + 1))

for i in range(h):
    for j in range(w):
        if (i + j) % 2:
            ans[i][j] = s.popleft()
        else:
            ans[i][j] = s.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])
        if len(s) >= 2:
            print('No')
            exit()
print('Yes')

for v in ans:
    print(*v)
0