結果

問題 No.1910 High Element on Grid
ユーザー titiatitia
提出日時 2023-10-08 02:51:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-07-26 18:02:09
合計ジャッジ時間 10,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 163 ms
17,664 KB
testcase_12 AC 165 ms
18,176 KB
testcase_13 AC 170 ms
18,048 KB
testcase_14 AC 186 ms
19,456 KB
testcase_15 AC 136 ms
16,512 KB
testcase_16 AC 121 ms
15,744 KB
testcase_17 AC 128 ms
16,384 KB
testcase_18 AC 157 ms
17,920 KB
testcase_19 AC 132 ms
16,384 KB
testcase_20 AC 130 ms
16,384 KB
testcase_21 AC 146 ms
17,536 KB
testcase_22 AC 109 ms
15,104 KB
testcase_23 AC 176 ms
18,688 KB
testcase_24 AC 113 ms
15,616 KB
testcase_25 AC 142 ms
17,280 KB
testcase_26 AC 136 ms
16,768 KB
testcase_27 AC 143 ms
17,024 KB
testcase_28 AC 99 ms
14,592 KB
testcase_29 AC 117 ms
15,744 KB
testcase_30 AC 129 ms
16,256 KB
testcase_31 AC 27 ms
10,752 KB
testcase_32 AC 213 ms
20,608 KB
testcase_33 AC 207 ms
20,736 KB
testcase_34 AC 206 ms
20,608 KB
testcase_35 AC 212 ms
20,608 KB
testcase_36 AC 29 ms
10,752 KB
testcase_37 AC 114 ms
15,488 KB
testcase_38 AC 59 ms
12,544 KB
testcase_39 AC 59 ms
12,544 KB
testcase_40 AC 35 ms
11,008 KB
testcase_41 AC 77 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())
R=list(map(int,input().split()))
C=list(map(int,input().split()))

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


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

ANS[0][0]=10**9

for i in range(1,H):
    x=R[i]

    k=ANS[i][W-1-(x-1)]
    ANS[i][0]=k+1

for j in range(1,W):
    x=C[j]

    k=ANS[H-1-(x-1)][j]
    ANS[0][j]=k+1

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