結果

問題 No.909 たぴの配置
ユーザー kekurekekure
提出日時 2019-10-22 01:57:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 396 ms / 3,000 ms
コード長 265 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 39,700 KB
最終ジャッジ日時 2024-07-02 17:55:02
合計ジャッジ時間 6,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 386 ms
36,328 KB
testcase_06 AC 393 ms
39,700 KB
testcase_07 AC 378 ms
35,908 KB
testcase_08 AC 395 ms
37,608 KB
testcase_09 AC 396 ms
37,788 KB
testcase_10 AC 374 ms
37,376 KB
testcase_11 AC 358 ms
35,744 KB
testcase_12 AC 386 ms
38,660 KB
testcase_13 AC 388 ms
38,540 KB
testcase_14 AC 360 ms
35,788 KB
testcase_15 AC 372 ms
36,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [int(i) for i in input().split()]
Y = [int(i) for i in input().split()]

l = min([x + y   for x, y in zip(X, Y)])
print(l)
print(0)
for x, y in zip(X, Y):
    if x <= y:
        print(max(x, 0))
    else:
        print(max(l - y, 0))

print(l)
0