結果

問題 No.2112 All 2x2 are Equal
ユーザー 👑 KazunKazun
提出日時 2022-10-28 22:08:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-07-06 01:17:48
合計ジャッジ時間 8,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 62 ms
68,992 KB
testcase_03 AC 60 ms
66,944 KB
testcase_04 WA -
testcase_05 AC 131 ms
86,144 KB
testcase_06 WA -
testcase_07 AC 104 ms
81,408 KB
testcase_08 AC 155 ms
90,496 KB
testcase_09 WA -
testcase_10 AC 110 ms
82,560 KB
testcase_11 AC 94 ms
80,256 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 53 ms
61,568 KB
testcase_17 AC 155 ms
90,240 KB
testcase_18 WA -
testcase_19 AC 77 ms
76,544 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 79 ms
77,696 KB
testcase_25 AC 83 ms
77,696 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 81 ms
77,056 KB
testcase_30 AC 105 ms
81,280 KB
testcase_31 AC 135 ms
86,528 KB
testcase_32 WA -
testcase_33 AC 188 ms
95,744 KB
testcase_34 WA -
testcase_35 AC 184 ms
94,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    print("Yes")

    Odd =list(range(1,H*W+1,2))
    Even=list(range(2,H*W+1,2))[::-1]

    X=[Odd[i//2] if i%2==0 else Even[i//2] for i in range(H*W)]
    for i in range(H):
        print(*X[i*W:(i+1)*W])

#==================================================
solve()
0