結果

問題 No.909 たぴの配置
ユーザー titiatitia
提出日時 2019-10-18 21:30:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 363 ms / 3,000 ms
コード長 187 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,836 KB
最終ジャッジ日時 2024-06-25 14:59:17
合計ジャッジ時間 6,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 342 ms
36,444 KB
testcase_06 AC 356 ms
39,836 KB
testcase_07 AC 324 ms
36,300 KB
testcase_08 AC 341 ms
37,604 KB
testcase_09 AC 363 ms
38,664 KB
testcase_10 AC 341 ms
36,404 KB
testcase_11 AC 337 ms
35,996 KB
testcase_12 AC 343 ms
38,588 KB
testcase_13 AC 349 ms
38,632 KB
testcase_14 AC 322 ms
36,412 KB
testcase_15 AC 320 ms
36,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int,input().split()))
Y=list(map(int,input().split()))

ANS=min([X[i]+Y[i] for i in range(N)])

print(ANS)
print(0)
for x in X:
    print(min(x,ANS))
print(ANS)
0