結果

問題 No.1910 High Element on Grid
ユーザー colognecologne
提出日時 2022-04-22 23:42:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-06-24 05:14:52
合計ジャッジ時間 9,712 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 148 ms
17,792 KB
testcase_12 AC 154 ms
18,176 KB
testcase_13 AC 154 ms
18,176 KB
testcase_14 AC 174 ms
19,584 KB
testcase_15 AC 127 ms
16,640 KB
testcase_16 AC 114 ms
16,000 KB
testcase_17 AC 124 ms
16,384 KB
testcase_18 AC 150 ms
17,920 KB
testcase_19 AC 124 ms
16,384 KB
testcase_20 AC 125 ms
16,384 KB
testcase_21 AC 141 ms
17,664 KB
testcase_22 AC 104 ms
15,104 KB
testcase_23 AC 162 ms
18,688 KB
testcase_24 AC 111 ms
15,744 KB
testcase_25 AC 141 ms
17,408 KB
testcase_26 AC 132 ms
16,768 KB
testcase_27 AC 137 ms
17,152 KB
testcase_28 AC 95 ms
14,592 KB
testcase_29 AC 114 ms
15,616 KB
testcase_30 AC 124 ms
16,128 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 200 ms
20,608 KB
testcase_33 AC 200 ms
20,736 KB
testcase_34 AC 195 ms
20,736 KB
testcase_35 AC 197 ms
20,736 KB
testcase_36 AC 31 ms
10,880 KB
testcase_37 AC 111 ms
15,488 KB
testcase_38 AC 60 ms
12,544 KB
testcase_39 AC 60 ms
12,672 KB
testcase_40 AC 35 ms
11,136 KB
testcase_41 AC 69 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    H, W = map(int, input().split())
    *R, = map(int, input().split())
    *C, = map(int, input().split())

    V = [[i * W + j + 1 for j in range(W)] for i in range(H)]
    for i in range(1, H):
        V[i][0] = V[i][W - R[i]]
    for i in range(1, W):
        V[0][i] = V[H - C[i]][i]
    V[0][0] = V[-1][-1]

    for x in V:
        print(*x)


if __name__ == '__main__':
    main()
0