結果

問題 No.2112 All 2x2 are Equal
ユーザー tassei903tassei903
提出日時 2022-11-15 00:19:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-09-16 02:25:41
合計ジャッジ時間 9,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 73 ms
72,576 KB
testcase_03 AC 69 ms
70,272 KB
testcase_04 AC 140 ms
86,272 KB
testcase_05 AC 155 ms
88,832 KB
testcase_06 AC 209 ms
98,688 KB
testcase_07 AC 124 ms
83,200 KB
testcase_08 AC 186 ms
94,464 KB
testcase_09 AC 82 ms
77,184 KB
testcase_10 AC 128 ms
84,352 KB
testcase_11 AC 111 ms
81,664 KB
testcase_12 AC 120 ms
82,816 KB
testcase_13 AC 192 ms
96,128 KB
testcase_14 AC 81 ms
76,544 KB
testcase_15 AC 164 ms
90,624 KB
testcase_16 AC 59 ms
63,616 KB
testcase_17 AC 185 ms
94,336 KB
testcase_18 AC 72 ms
70,272 KB
testcase_19 AC 90 ms
77,440 KB
testcase_20 AC 87 ms
76,544 KB
testcase_21 AC 177 ms
93,184 KB
testcase_22 AC 75 ms
73,856 KB
testcase_23 AC 69 ms
70,272 KB
testcase_24 AC 94 ms
78,464 KB
testcase_25 AC 96 ms
79,232 KB
testcase_26 AC 88 ms
77,952 KB
testcase_27 AC 108 ms
80,128 KB
testcase_28 AC 143 ms
87,040 KB
testcase_29 AC 100 ms
77,568 KB
testcase_30 AC 120 ms
82,816 KB
testcase_31 AC 161 ms
89,344 KB
testcase_32 AC 216 ms
100,864 KB
testcase_33 AC 221 ms
100,736 KB
testcase_34 AC 219 ms
100,608 KB
testcase_35 AC 218 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
h,w = na()

a = [[i * w + j+1 for j in range(w)]for i in range(h)]

b = [[0 for j in range(w)]for i in range(h)]
for i in range(h):
    for j in range(w):
        if i%2:
            b[i][j] = a[i][-1-j]
        else:
            b[i][j] = a[i][j]

b, a = [[0 for j in range(w)]for i in range(h)], b
for i in range(h):
    for j in range(w):
        if j%2:
            b[i][j] = a[-1-i][j]
        else:
            b[i][j] = a[i][j]
Yes()
for i in b:
    print(*i)
0