結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 381 ms
36,440 KB
testcase_06 AC 387 ms
39,964 KB
testcase_07 AC 356 ms
36,556 KB
testcase_08 AC 368 ms
37,620 KB
testcase_09 AC 397 ms
38,668 KB
testcase_10 AC 394 ms
36,400 KB
testcase_11 AC 353 ms
36,240 KB
testcase_12 AC 378 ms
38,604 KB
testcase_13 AC 383 ms
38,760 KB
testcase_14 AC 357 ms
36,416 KB
testcase_15 AC 367 ms
36,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=[int(i) for i in input().split()]
Y=[int(i) for i in input().split()]

res = min([X[i]+Y[i] for i in range(N)])
print(res)
print(0)
for x in X:
    print(min(x,res))
print(res)
0