結果

問題 No.2112 All 2x2 are Equal
ユーザー ニックネームニックネーム
提出日時 2022-10-28 22:55:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 794 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,816 KB
最終ジャッジ日時 2024-07-06 02:09:31
合計ジャッジ時間 14,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 46 ms
11,776 KB
testcase_03 AC 40 ms
11,520 KB
testcase_04 AC 335 ms
26,624 KB
testcase_05 AC 433 ms
31,616 KB
testcase_06 AC 774 ms
48,000 KB
testcase_07 AC 242 ms
22,272 KB
testcase_08 AC 604 ms
40,320 KB
testcase_09 AC 58 ms
12,288 KB
testcase_10 AC 285 ms
24,192 KB
testcase_11 AC 202 ms
19,712 KB
testcase_12 AC 242 ms
21,632 KB
testcase_13 AC 656 ms
43,392 KB
testcase_14 AC 52 ms
12,032 KB
testcase_15 AC 477 ms
34,048 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 587 ms
40,192 KB
testcase_18 AC 38 ms
11,392 KB
testcase_19 AC 68 ms
12,800 KB
testcase_20 AC 43 ms
11,520 KB
testcase_21 AC 579 ms
38,784 KB
testcase_22 AC 50 ms
12,160 KB
testcase_23 AC 42 ms
11,648 KB
testcase_24 AC 86 ms
13,824 KB
testcase_25 AC 111 ms
15,232 KB
testcase_26 AC 97 ms
13,696 KB
testcase_27 AC 154 ms
17,664 KB
testcase_28 AC 356 ms
27,904 KB
testcase_29 AC 69 ms
13,056 KB
testcase_30 AC 247 ms
22,016 KB
testcase_31 AC 446 ms
32,640 KB
testcase_32 AC 787 ms
50,560 KB
testcase_33 AC 781 ms
50,560 KB
testcase_34 AC 794 ms
50,816 KB
testcase_35 AC 782 ms
50,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
ans = [[] for _ in range(h)]; p = 1; q = h*w
for i in range(h):
    if i%2:
        while True:
            ans[i].append(q); q -= 1
            if len(ans[i]) == w: break
            ans[i].append(p); p += 1
            if len(ans[i]) == w: break
    else:
        while True:
            ans[i].append(p); p += 1
            if len(ans[i]) == w: break
            ans[i].append(q); q -= 1
            if len(ans[i]) == w: break
print("Yes")
for s in ans: print(*s)
0