結果

問題 No.2852 Yakitori Optimization Problem
ユーザー ああいいああいい
提出日時 2024-08-28 16:19:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 138,400 KB
最終ジャッジ日時 2024-08-28 16:19:32
合計ジャッジ時間 10,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
92,056 KB
testcase_01 AC 418 ms
124,356 KB
testcase_02 AC 359 ms
121,840 KB
testcase_03 AC 626 ms
138,400 KB
testcase_04 AC 513 ms
124,724 KB
testcase_05 AC 203 ms
93,556 KB
testcase_06 AC 91 ms
79,184 KB
testcase_07 AC 502 ms
125,676 KB
testcase_08 AC 76 ms
77,376 KB
testcase_09 AC 658 ms
121,892 KB
testcase_10 AC 661 ms
133,716 KB
testcase_11 AC 671 ms
133,812 KB
testcase_12 AC 658 ms
133,584 KB
testcase_13 AC 643 ms
133,712 KB
testcase_14 AC 680 ms
133,716 KB
testcase_15 AC 642 ms
134,064 KB
testcase_16 AC 667 ms
133,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
ans = sum(A)
B = list(map(int,input().split()))
C = list(map(int,input().split()))
l = [(B[i] - C[i],i) for i in range(N)]
l.sort(reverse = True)
for j in range(K):
	u,i = l[j]
	ans += B[i]
for j in range(K,N):
	u,i = l[j]
	ans += C[i]
print(ans)
0