結果

問題 No.909 たぴの配置
ユーザー syosinnsya8syosinnsya8
提出日時 2020-04-01 18:16:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 319 ms / 3,000 ms
コード長 181 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 10,564 KB
実行使用メモリ 39,160 KB
最終ジャッジ日時 2023-09-09 09:11:38
合計ジャッジ時間 7,336 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,752 KB
testcase_01 AC 15 ms
7,804 KB
testcase_02 AC 15 ms
7,836 KB
testcase_03 AC 15 ms
7,812 KB
testcase_04 AC 15 ms
7,732 KB
testcase_05 AC 313 ms
37,848 KB
testcase_06 AC 314 ms
39,160 KB
testcase_07 AC 289 ms
36,648 KB
testcase_08 AC 307 ms
37,956 KB
testcase_09 AC 319 ms
37,936 KB
testcase_10 AC 294 ms
36,636 KB
testcase_11 AC 293 ms
37,184 KB
testcase_12 AC 303 ms
38,808 KB
testcase_13 AC 316 ms
37,896 KB
testcase_14 AC 295 ms
36,644 KB
testcase_15 AC 290 ms
36,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int,input().split()))
Y=list(map(int,input().split()))
d=min(x+y for x,y in zip(X,Y))

print(d)
print(0)
for i in range(N):
    print(min(X[i],d))
print(d)
0