結果

問題 No.2852 Yakitori Optimization Problem
ユーザー PNJPNJ
提出日時 2024-09-03 19:12:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 138,108 KB
最終ジャッジ日時 2024-09-03 19:12:21
合計ジャッジ時間 7,208 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
92,868 KB
testcase_01 AC 160 ms
123,800 KB
testcase_02 AC 140 ms
114,236 KB
testcase_03 AC 194 ms
138,108 KB
testcase_04 AC 165 ms
124,332 KB
testcase_05 AC 87 ms
93,284 KB
testcase_06 AC 55 ms
75,456 KB
testcase_07 AC 166 ms
125,176 KB
testcase_08 AC 50 ms
72,020 KB
testcase_09 AC 183 ms
117,604 KB
testcase_10 AC 220 ms
133,536 KB
testcase_11 AC 194 ms
133,524 KB
testcase_12 AC 195 ms
133,276 KB
testcase_13 AC 195 ms
133,412 KB
testcase_14 AC 194 ms
133,204 KB
testcase_15 AC 191 ms
133,140 KB
testcase_16 AC 210 ms
133,676 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()))
ans = sum(A) + sum(C)
for i in range(N):
  B[i] -= C[i]
B.sort()
for k in range(K):
  ans += B.pop()
print(ans)
0