結果

問題 No.909 たぴの配置
ユーザー kimiyukikimiyuki
提出日時 2019-10-18 21:27:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 408 ms / 3,000 ms
コード長 233 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,856 KB
最終ジャッジ日時 2024-06-25 14:52:33
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 386 ms
36,584 KB
testcase_06 AC 397 ms
39,856 KB
testcase_07 AC 372 ms
36,572 KB
testcase_08 AC 392 ms
37,876 KB
testcase_09 AC 408 ms
38,812 KB
testcase_10 AC 374 ms
36,544 KB
testcase_11 AC 366 ms
36,252 KB
testcase_12 AC 389 ms
38,728 KB
testcase_13 AC 405 ms
38,784 KB
testcase_14 AC 371 ms
36,552 KB
testcase_15 AC 371 ms
36,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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