結果

問題 No.909 たぴの配置
ユーザー syosinnsya8syosinnsya8
提出日時 2020-04-01 18:16:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 401 ms / 3,000 ms
コード長 181 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,676 KB
最終ジャッジ日時 2024-06-27 02:17:01
合計ジャッジ時間 6,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 383 ms
36,192 KB
testcase_06 AC 391 ms
39,676 KB
testcase_07 AC 363 ms
36,284 KB
testcase_08 AC 386 ms
37,608 KB
testcase_09 AC 401 ms
38,664 KB
testcase_10 AC 372 ms
36,276 KB
testcase_11 AC 362 ms
36,112 KB
testcase_12 AC 374 ms
38,456 KB
testcase_13 AC 393 ms
38,508 KB
testcase_14 AC 365 ms
36,288 KB
testcase_15 AC 372 ms
36,096 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