結果

問題 No.909 たぴの配置
ユーザー 💕💖💞💕💖💞
提出日時 2019-10-26 15:09:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 437 ms / 3,000 ms
コード長 226 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,684 KB
最終ジャッジ日時 2024-09-14 08:39:37
合計ジャッジ時間 8,082 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 410 ms
36,404 KB
testcase_06 AC 427 ms
39,684 KB
testcase_07 AC 387 ms
36,312 KB
testcase_08 AC 415 ms
37,488 KB
testcase_09 AC 437 ms
38,548 KB
testcase_10 AC 399 ms
36,292 KB
testcase_11 AC 392 ms
35,984 KB
testcase_12 AC 412 ms
38,476 KB
testcase_13 AC 425 ms
38,640 KB
testcase_14 AC 403 ms
36,164 KB
testcase_15 AC 394 ms
36,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

xs = list(map(int, input().split()))
ys = list(map(int, input().split()))

m = min([x+y for x, y in zip(xs, ys)])
print(m)

print(0)
for x, y, i in zip(xs, ys, list(range(N+1))):
    print(max(0, m-y))
print(m)
0