結果

問題 No.2852 Yakitori Optimization Problem
ユーザー 👑 KA37RIKA37RI
提出日時 2024-08-25 13:57:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 112,996 KB
最終ジャッジ日時 2024-08-25 13:57:32
合計ジャッジ時間 4,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]
b = [int(x) for x in input().split()]
c = [int(x) for x in input().split()]

bmc = [b[i] - c[i] for i in range(n)]
bmc.sort()
bmc = list(reversed(bmc))

print( sum(a) + sum(c) + sum(bmc[:k]) )
0