結果

問題 No.909 たぴの配置
ユーザー hrbt__hrbt__
提出日時 2019-11-26 18:49:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 413 ms / 3,000 ms
コード長 221 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,712 KB
最終ジャッジ日時 2024-04-24 16:12:27
合計ジャッジ時間 6,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 390 ms
36,444 KB
testcase_06 AC 405 ms
39,712 KB
testcase_07 AC 375 ms
36,416 KB
testcase_08 AC 387 ms
37,732 KB
testcase_09 AC 413 ms
38,668 KB
testcase_10 AC 376 ms
36,408 KB
testcase_11 AC 370 ms
36,236 KB
testcase_12 AC 388 ms
38,588 KB
testcase_13 AC 404 ms
38,760 KB
testcase_14 AC 370 ms
36,416 KB
testcase_15 AC 369 ms
36,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
n = int(input())
x = list(map(int, input().split()))
y = list(map(int, input().split()))
m = min([a + b for a, b in zip(x, y)])
print(m)
print(0)
for i in range(n):
    print(min(x[i], m))
print(m)
0