結果

問題 No.2852 Yakitori Optimization Problem
ユーザー shobonvipshobonvip
提出日時 2024-08-25 13:34:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 141,616 KB
最終ジャッジ日時 2024-08-25 13:35:04
合計ジャッジ時間 6,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
92,820 KB
testcase_01 AC 284 ms
124,272 KB
testcase_02 AC 262 ms
126,088 KB
testcase_03 AC 397 ms
141,616 KB
testcase_04 AC 377 ms
126,124 KB
testcase_05 AC 133 ms
93,376 KB
testcase_06 AC 68 ms
77,300 KB
testcase_07 AC 371 ms
125,548 KB
testcase_08 AC 59 ms
73,984 KB
testcase_09 AC 405 ms
135,852 KB
testcase_10 AC 403 ms
136,720 KB
testcase_11 AC 404 ms
136,324 KB
testcase_12 AC 406 ms
136,804 KB
testcase_13 AC 408 ms
136,820 KB
testcase_14 AC 416 ms
136,696 KB
testcase_15 AC 405 ms
136,956 KB
testcase_16 AC 407 ms
136,836 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 = [(a[i],b[i]-c[i],i) for i in range(n)]
d.sort(key=lambda x:-x[1])
ans = 0
for i in range(k):
	ans += a[d[i][2]] + b[d[i][2]]
for i in range(k,n):
	ans += a[d[i][2]] + c[d[i][2]]
print(ans)
0