結果

問題 No.2852 Yakitori Optimization Problem
ユーザー Meso MesoMeso Meso
提出日時 2024-08-27 19:35:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,796 KB
最終ジャッジ日時 2024-08-27 19:35:36
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
20,056 KB
testcase_01 AC 228 ms
37,764 KB
testcase_02 AC 187 ms
33,300 KB
testcase_03 AC 297 ms
47,984 KB
testcase_04 AC 255 ms
40,400 KB
testcase_05 AC 107 ms
22,500 KB
testcase_06 AC 50 ms
14,460 KB
testcase_07 AC 236 ms
40,016 KB
testcase_08 AC 47 ms
13,436 KB
testcase_09 AC 285 ms
49,508 KB
testcase_10 AC 299 ms
50,676 KB
testcase_11 AC 322 ms
50,668 KB
testcase_12 AC 304 ms
50,516 KB
testcase_13 AC 310 ms
50,636 KB
testcase_14 AC 311 ms
50,796 KB
testcase_15 AC 326 ms
50,512 KB
testcase_16 AC 311 ms
50,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = list(map(int, input().split()))

bc = [b[i] - c[i] for i in range(n)]
bc.sort(reverse=True)
bca = bc[:k]
ans = sum(a) + sum(c)
print(ans + sum(bca))
0