結果

問題 No.2852 Yakitori Optimization Problem
ユーザー square1001square1001
提出日時 2024-07-15 08:42:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,540 KB
最終ジャッジ日時 2024-07-15 08:42:58
合計ジャッジ時間 8,719 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
19,836 KB
testcase_01 AC 263 ms
37,636 KB
testcase_02 AC 224 ms
33,172 KB
testcase_03 AC 387 ms
48,028 KB
testcase_04 AC 325 ms
40,400 KB
testcase_05 AC 119 ms
21,836 KB
testcase_06 AC 59 ms
13,952 KB
testcase_07 AC 292 ms
39,756 KB
testcase_08 AC 52 ms
13,568 KB
testcase_09 AC 356 ms
49,380 KB
testcase_10 AC 397 ms
50,476 KB
testcase_11 AC 362 ms
50,284 KB
testcase_12 AC 369 ms
50,412 KB
testcase_13 AC 380 ms
50,508 KB
testcase_14 AC 381 ms
50,540 KB
testcase_15 AC 370 ms
50,500 KB
testcase_16 AC 366 ms
50,412 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()))

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

print(ans)
0