結果

問題 No.2112 All 2x2 are Equal
ユーザー 👑 KazunKazun
提出日時 2022-10-29 00:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 124,436 KB
最終ジャッジ日時 2024-07-06 03:22:05
合計ジャッジ時間 7,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,908 KB
testcase_01 AC 36 ms
51,684 KB
testcase_02 AC 49 ms
64,264 KB
testcase_03 AC 45 ms
63,708 KB
testcase_04 AC 97 ms
95,108 KB
testcase_05 AC 114 ms
102,592 KB
testcase_06 AC 155 ms
119,248 KB
testcase_07 AC 85 ms
89,500 KB
testcase_08 AC 137 ms
110,208 KB
testcase_09 AC 51 ms
67,372 KB
testcase_10 AC 92 ms
92,828 KB
testcase_11 AC 80 ms
87,716 KB
testcase_12 AC 86 ms
89,088 KB
testcase_13 AC 144 ms
114,348 KB
testcase_14 AC 48 ms
65,460 KB
testcase_15 AC 119 ms
103,416 KB
testcase_16 AC 42 ms
60,920 KB
testcase_17 AC 133 ms
110,268 KB
testcase_18 AC 47 ms
64,660 KB
testcase_19 AC 53 ms
70,408 KB
testcase_20 AC 54 ms
68,964 KB
testcase_21 AC 131 ms
110,068 KB
testcase_22 AC 48 ms
65,300 KB
testcase_23 AC 47 ms
63,324 KB
testcase_24 AC 60 ms
73,976 KB
testcase_25 AC 59 ms
76,100 KB
testcase_26 AC 55 ms
71,444 KB
testcase_27 AC 72 ms
84,168 KB
testcase_28 AC 104 ms
97,316 KB
testcase_29 AC 57 ms
70,656 KB
testcase_30 AC 84 ms
89,216 KB
testcase_31 AC 116 ms
102,700 KB
testcase_32 AC 160 ms
124,168 KB
testcase_33 AC 159 ms
124,208 KB
testcase_34 AC 159 ms
124,160 KB
testcase_35 AC 161 ms
124,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    H,W=map(int,input().split())

    print("Yes")

    X=[[0]*W for _ in range(H)]
    B=[]

    for i in range(H):
        for j in range(W):
            k=i*W+j+1
            if (i+j)%2==0:
                X[i][j]=k
            else:
                B.append(k)

    B.reverse()
    for i in range(H-1,-1,-1):
        for j in range(W-1,-1,-1):
            if X[i][j]==0:
                X[i][j]=B.pop()

    string=lambda x:" ".join(map(str,x))
    write("\n".join(map(string,X)))

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write
#==================================================
solve()
0