結果

問題 No.909 たぴの配置
ユーザー SalmonizeSalmonize
提出日時 2020-03-10 13:31:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 399 ms / 3,000 ms
コード長 186 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,200 KB
最終ジャッジ日時 2024-11-15 23:11:47
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 373 ms
36,440 KB
testcase_06 AC 397 ms
39,720 KB
testcase_07 AC 359 ms
38,072 KB
testcase_08 AC 386 ms
39,268 KB
testcase_09 AC 399 ms
40,200 KB
testcase_10 AC 361 ms
38,068 KB
testcase_11 AC 362 ms
37,652 KB
testcase_12 AC 377 ms
38,460 KB
testcase_13 AC 392 ms
38,764 KB
testcase_14 AC 362 ms
38,076 KB
testcase_15 AC 364 ms
37,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
f = tuple(map(int, input().split()))
g = tuple(map(int, input().split()))
h = min(x + y for x, y in zip(f,g))
print(h)
print(0)
for x in f:
    print(min(h, x))
print(h)
0