結果

問題 No.2112 All 2x2 are Equal
ユーザー lloyzlloyz
提出日時 2022-10-31 00:02:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,944 KB
最終ジャッジ日時 2024-07-07 14:45:53
合計ジャッジ時間 18,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 49 ms
11,776 KB
testcase_03 AC 46 ms
11,520 KB
testcase_04 AC 451 ms
26,752 KB
testcase_05 AC 530 ms
31,744 KB
testcase_06 AC 917 ms
48,384 KB
testcase_07 AC 300 ms
22,400 KB
testcase_08 AC 748 ms
40,320 KB
testcase_09 AC 64 ms
12,416 KB
testcase_10 AC 350 ms
24,320 KB
testcase_11 AC 249 ms
19,968 KB
testcase_12 AC 276 ms
21,760 KB
testcase_13 AC 821 ms
43,520 KB
testcase_14 AC 59 ms
12,032 KB
testcase_15 AC 585 ms
34,304 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 746 ms
40,192 KB
testcase_18 AC 40 ms
11,392 KB
testcase_19 AC 75 ms
12,928 KB
testcase_20 AC 44 ms
11,648 KB
testcase_21 AC 697 ms
39,040 KB
testcase_22 AC 55 ms
12,032 KB
testcase_23 AC 48 ms
11,648 KB
testcase_24 AC 96 ms
13,824 KB
testcase_25 AC 126 ms
15,360 KB
testcase_26 AC 98 ms
13,824 KB
testcase_27 AC 187 ms
17,792 KB
testcase_28 AC 437 ms
28,160 KB
testcase_29 AC 79 ms
12,928 KB
testcase_30 AC 296 ms
22,144 KB
testcase_31 AC 540 ms
32,512 KB
testcase_32 AC 997 ms
50,944 KB
testcase_33 AC 970 ms
50,688 KB
testcase_34 AC 965 ms
50,688 KB
testcase_35 AC 977 ms
50,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())

ANS = [[0 for _ in range(w)] for _ in range(h)]
curr = 1
for i in range(h):
    for j in range(w):
        if (i + j) % 2 == 0:
            ANS[i][j] = curr
            curr += 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] = curr
            curr += 1
print("Yes")
for i in range(h):
    print(*ANS[i])
0