結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 27 ms
10,496 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 384 ms
26,624 KB
testcase_05 WA -
testcase_06 AC 880 ms
47,360 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 64 ms
12,416 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 264 ms
21,120 KB
testcase_13 AC 782 ms
43,136 KB
testcase_14 AC 62 ms
11,904 KB
testcase_15 AC 575 ms
33,920 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 WA -
testcase_18 AC 42 ms
11,392 KB
testcase_19 WA -
testcase_20 AC 45 ms
11,520 KB
testcase_21 AC 684 ms
38,400 KB
testcase_22 AC 56 ms
12,032 KB
testcase_23 AC 46 ms
11,520 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 96 ms
13,824 KB
testcase_27 AC 184 ms
17,536 KB
testcase_28 AC 419 ms
27,648 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 954 ms
49,792 KB
testcase_33 WA -
testcase_34 AC 962 ms
49,920 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

now=1

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

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

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

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

print("Yes")

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