結果

問題 No.909 たぴの配置
ユーザー c0degeekc0degeek
提出日時 2019-10-18 22:22:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 380 ms / 3,000 ms
コード長 278 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,820 KB
最終ジャッジ日時 2024-06-25 17:13:30
合計ジャッジ時間 6,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 355 ms
36,452 KB
testcase_06 AC 365 ms
39,820 KB
testcase_07 AC 339 ms
36,164 KB
testcase_08 AC 363 ms
37,728 KB
testcase_09 AC 380 ms
38,164 KB
testcase_10 AC 341 ms
37,860 KB
testcase_11 AC 335 ms
37,140 KB
testcase_12 AC 357 ms
38,836 KB
testcase_13 AC 368 ms
38,660 KB
testcase_14 AC 334 ms
36,040 KB
testcase_15 AC 333 ms
36,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = list(map(int, input().split()))
y = list(map(int, input().split()))
m = min(x[i]+y[i] for i in range(n))
print(m)
print(0)
for j in range(n):
    if x[j] <= m:
        print(x[j])
    elif y[j] <= m:
        print(m-y[j])
    else:
        print(0)
print(m)
0