結果

問題 No.2852 Yakitori Optimization Problem
ユーザー わんわん
提出日時 2024-09-01 15:34:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 143,808 KB
最終ジャッジ日時 2024-09-01 15:35:09
合計ジャッジ時間 10,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
92,616 KB
testcase_01 AC 449 ms
122,604 KB
testcase_02 AC 387 ms
129,324 KB
testcase_03 AC 638 ms
143,808 KB
testcase_04 AC 475 ms
125,352 KB
testcase_05 AC 193 ms
93,828 KB
testcase_06 AC 88 ms
79,412 KB
testcase_07 AC 505 ms
125,800 KB
testcase_08 AC 79 ms
77,392 KB
testcase_09 AC 615 ms
137,836 KB
testcase_10 AC 639 ms
140,344 KB
testcase_11 AC 621 ms
140,332 KB
testcase_12 AC 658 ms
140,228 KB
testcase_13 AC 657 ms
140,364 KB
testcase_14 AC 621 ms
139,976 KB
testcase_15 AC 640 ms
139,952 KB
testcase_16 AC 625 ms
140,228 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 = []
for i, (b, c) in enumerate(zip(B, C)):
  D.append((b-c, i))
D.sort()

ans = 0
cnt = 0
while D:
  _, i = D.pop()
  ans += A[i]
  ans += B[i] if cnt < K else C[i]
  cnt += 1

print(ans)
0