結果

問題 No.2852 Yakitori Optimization Problem
ユーザー rlangevinrlangevin
提出日時 2024-09-08 14:42:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 138,096 KB
最終ジャッジ日時 2024-09-08 14:42:11
合計ジャッジ時間 6,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
92,572 KB
testcase_01 AC 162 ms
123,664 KB
testcase_02 AC 143 ms
114,508 KB
testcase_03 AC 199 ms
138,096 KB
testcase_04 AC 171 ms
124,392 KB
testcase_05 AC 92 ms
93,296 KB
testcase_06 AC 57 ms
74,516 KB
testcase_07 AC 175 ms
125,560 KB
testcase_08 AC 54 ms
71,332 KB
testcase_09 AC 191 ms
117,432 KB
testcase_10 AC 199 ms
133,872 KB
testcase_11 AC 201 ms
133,524 KB
testcase_12 AC 198 ms
133,164 KB
testcase_13 AC 201 ms
133,536 KB
testcase_14 AC 204 ms
133,540 KB
testcase_15 AC 197 ms
133,296 KB
testcase_16 AC 201 ms
133,296 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 i in range(K):
	ans += B.pop()
	
print(ans)
0