結果

問題 No.909 たぴの配置
ユーザー tanon710tanon710
提出日時 2019-10-18 22:07:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 458 ms / 3,000 ms
コード長 345 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,684 KB
最終ジャッジ日時 2024-06-25 17:01:41
合計ジャッジ時間 7,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 432 ms
36,460 KB
testcase_06 AC 454 ms
38,684 KB
testcase_07 AC 420 ms
36,368 KB
testcase_08 AC 454 ms
37,368 KB
testcase_09 AC 458 ms
38,556 KB
testcase_10 AC 421 ms
36,296 KB
testcase_11 AC 416 ms
36,000 KB
testcase_12 AC 447 ms
38,480 KB
testcase_13 AC 453 ms
38,520 KB
testcase_14 AC 433 ms
36,192 KB
testcase_15 AC 419 ms
36,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
arr1=list(map(int,input().split()))
arr2=list(map(int,input().split()))
d=10**18
for i in range(n):
    d=min(d,arr1[i]+arr2[i])
print(d)
pos=[0]*(n+2)
pos[-1]=d
for i in range(1,n+1):
    l0=0
    r0=arr1[i-1]
    ln=d-arr2[i-1]
    rn=d
    if r0<=rn:
        pos[i]=r0
    else:
        pos[i]=rn
for val in pos:
    print(val)
0