結果

問題 No.2112 All 2x2 are Equal
ユーザー titiatitia
提出日時 2022-10-29 02:59:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-07-06 05:13:09
合計ジャッジ時間 16,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 51 ms
11,776 KB
testcase_03 AC 44 ms
11,648 KB
testcase_04 AC 381 ms
26,752 KB
testcase_05 AC 504 ms
31,488 KB
testcase_06 AC 850 ms
47,488 KB
testcase_07 AC 275 ms
22,144 KB
testcase_08 AC 678 ms
40,064 KB
testcase_09 AC 59 ms
12,416 KB
testcase_10 AC 320 ms
24,064 KB
testcase_11 AC 232 ms
19,712 KB
testcase_12 AC 261 ms
21,376 KB
testcase_13 AC 747 ms
43,264 KB
testcase_14 AC 54 ms
12,288 KB
testcase_15 AC 540 ms
33,792 KB
testcase_16 AC 25 ms
10,880 KB
testcase_17 AC 698 ms
39,680 KB
testcase_18 AC 39 ms
11,648 KB
testcase_19 AC 71 ms
12,928 KB
testcase_20 AC 41 ms
11,520 KB
testcase_21 AC 655 ms
38,528 KB
testcase_22 AC 53 ms
12,032 KB
testcase_23 AC 44 ms
11,520 KB
testcase_24 AC 114 ms
14,080 KB
testcase_25 AC 145 ms
15,232 KB
testcase_26 AC 120 ms
13,952 KB
testcase_27 AC 219 ms
17,536 KB
testcase_28 AC 402 ms
27,904 KB
testcase_29 AC 73 ms
13,056 KB
testcase_30 AC 279 ms
22,144 KB
testcase_31 AC 512 ms
32,256 KB
testcase_32 AC 923 ms
50,048 KB
testcase_33 AC 907 ms
50,048 KB
testcase_34 AC 910 ms
49,792 KB
testcase_35 AC 889 ms
50,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())

ANS=[[0]*W for i in range(H)]

now=1

for i in range(H):
    for j in range(W):
        if (i+j)%2==0:
            ANS[i][j]=now
            now+=1

for i in range(H-1,-1,-1):
    for j in range(W-1,-1,-1):
        if (i+j)%2==1:
            ANS[i][j]=now
            now+=1

print("Yes")

for i in range(H):
    print(*ANS[i])
0