結果

問題 No.2852 Yakitori Optimization Problem
ユーザー vwxyzvwxyz
提出日時 2024-08-25 20:55:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,768 KB
最終ジャッジ日時 2024-08-25 20:55:43
合計ジャッジ時間 6,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
19,944 KB
testcase_01 AC 228 ms
37,760 KB
testcase_02 AC 191 ms
33,300 KB
testcase_03 AC 305 ms
48,032 KB
testcase_04 AC 247 ms
40,400 KB
testcase_05 AC 105 ms
22,352 KB
testcase_06 AC 53 ms
14,212 KB
testcase_07 AC 249 ms
40,016 KB
testcase_08 AC 47 ms
13,440 KB
testcase_09 AC 302 ms
49,504 KB
testcase_10 AC 312 ms
50,676 KB
testcase_11 AC 312 ms
50,764 KB
testcase_12 AC 310 ms
50,544 KB
testcase_13 AC 321 ms
50,676 KB
testcase_14 AC 311 ms
50,640 KB
testcase_15 AC 309 ms
50,672 KB
testcase_16 AC 313 ms
50,768 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-c for b,c in zip(B,C)]
BC.sort(reverse=True)
ans=sum(A)+sum(C)+sum(BC[:K])
print(ans)
0