結果

問題 No.1910 High Element on Grid
ユーザー chineristACchineristAC
提出日時 2022-02-25 03:53:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 78,512 KB
最終ジャッジ日時 2024-07-02 17:14:01
合計ジャッジ時間 9,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,832 KB
testcase_01 AC 35 ms
53,248 KB
testcase_02 AC 34 ms
52,768 KB
testcase_03 AC 36 ms
52,004 KB
testcase_04 AC 38 ms
52,948 KB
testcase_05 AC 48 ms
52,424 KB
testcase_06 AC 35 ms
52,272 KB
testcase_07 AC 36 ms
52,540 KB
testcase_08 AC 35 ms
52,004 KB
testcase_09 AC 50 ms
52,332 KB
testcase_10 AC 37 ms
52,336 KB
testcase_11 AC 76 ms
77,576 KB
testcase_12 AC 76 ms
77,432 KB
testcase_13 AC 76 ms
77,600 KB
testcase_14 AC 77 ms
77,880 KB
testcase_15 AC 71 ms
77,504 KB
testcase_16 AC 69 ms
77,172 KB
testcase_17 AC 72 ms
76,964 KB
testcase_18 AC 76 ms
77,772 KB
testcase_19 AC 72 ms
77,512 KB
testcase_20 AC 71 ms
77,160 KB
testcase_21 AC 101 ms
77,288 KB
testcase_22 AC 68 ms
76,948 KB
testcase_23 AC 76 ms
77,828 KB
testcase_24 AC 70 ms
76,972 KB
testcase_25 AC 75 ms
77,780 KB
testcase_26 AC 74 ms
77,604 KB
testcase_27 AC 73 ms
77,828 KB
testcase_28 AC 67 ms
76,640 KB
testcase_29 AC 69 ms
77,336 KB
testcase_30 AC 72 ms
76,916 KB
testcase_31 AC 36 ms
52,168 KB
testcase_32 AC 84 ms
78,256 KB
testcase_33 AC 84 ms
78,372 KB
testcase_34 AC 84 ms
78,512 KB
testcase_35 AC 85 ms
78,208 KB
testcase_36 AC 46 ms
63,084 KB
testcase_37 AC 71 ms
77,288 KB
testcase_38 AC 63 ms
76,512 KB
testcase_39 AC 54 ms
73,124 KB
testcase_40 AC 49 ms
64,608 KB
testcase_41 AC 66 ms
76,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = [[i+j+2 for j in range(W)] for i in range(H)]

for i in range(H):
    for j in range(W):
        if i==0:
            A[i][j] = j+H+2-C[j]
        if j==0:
            A[i][j] = i+W+2-R[i]
A[0][0] = 10**9
for i in range(H):
    print(*A[i])
        
0