結果

問題 No.2852 Yakitori Optimization Problem
ユーザー noriocnorioc
提出日時 2024-08-25 18:12:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 137,708 KB
最終ジャッジ日時 2024-08-25 18:12:37
合計ジャッジ時間 5,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
92,692 KB
testcase_01 AC 178 ms
130,580 KB
testcase_02 AC 137 ms
121,812 KB
testcase_03 AC 197 ms
137,708 KB
testcase_04 AC 167 ms
124,200 KB
testcase_05 AC 85 ms
93,652 KB
testcase_06 AC 51 ms
74,240 KB
testcase_07 AC 162 ms
124,776 KB
testcase_08 AC 50 ms
72,708 KB
testcase_09 AC 185 ms
127,332 KB
testcase_10 AC 202 ms
137,000 KB
testcase_11 AC 194 ms
137,520 KB
testcase_12 AC 189 ms
136,464 KB
testcase_13 AC 196 ms
137,312 KB
testcase_14 AC 189 ms
136,744 KB
testcase_15 AC 196 ms
135,852 KB
testcase_16 AC 215 ms
137,588 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()))

diffs = [b - c for b, c in zip(B, C)]
diffs.sort(reverse=True)

ans = sum(A) + sum(C) + sum(diffs[:K])
print(ans)
0