結果

問題 No.2852 Yakitori Optimization Problem
ユーザー anonymouslyanonymously
提出日時 2024-08-25 14:12:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,668 KB
最終ジャッジ日時 2024-08-25 14:12:09
合計ジャッジ時間 5,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
19,744 KB
testcase_01 AC 224 ms
38,004 KB
testcase_02 AC 205 ms
34,752 KB
testcase_03 AC 308 ms
47,676 KB
testcase_04 AC 247 ms
40,388 KB
testcase_05 AC 102 ms
22,336 KB
testcase_06 AC 51 ms
14,196 KB
testcase_07 AC 239 ms
40,008 KB
testcase_08 AC 45 ms
13,696 KB
testcase_09 AC 322 ms
49,476 KB
testcase_10 AC 314 ms
50,668 KB
testcase_11 AC 312 ms
50,668 KB
testcase_12 AC 315 ms
50,544 KB
testcase_13 AC 326 ms
50,540 KB
testcase_14 AC 307 ms
50,540 KB
testcase_15 AC 322 ms
48,732 KB
testcase_16 AC 306 ms
50,536 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()))
D = [C[i] - B[i] for i in range(N)]
D.sort()
print(sum(A) + sum(B) + sum(D[K:]))
0