結果

問題 No.2852 Yakitori Optimization Problem
ユーザー nikoro256nikoro256
提出日時 2024-08-25 13:37:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 712 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 146,588 KB
最終ジャッジ日時 2024-08-25 13:37:56
合計ジャッジ時間 10,323 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
92,768 KB
testcase_01 AC 452 ms
122,372 KB
testcase_02 AC 441 ms
125,936 KB
testcase_03 AC 686 ms
146,588 KB
testcase_04 AC 499 ms
124,728 KB
testcase_05 AC 221 ms
93,292 KB
testcase_06 AC 101 ms
80,960 KB
testcase_07 AC 497 ms
125,556 KB
testcase_08 AC 72 ms
74,812 KB
testcase_09 AC 687 ms
141,036 KB
testcase_10 AC 711 ms
140,752 KB
testcase_11 AC 712 ms
140,768 KB
testcase_12 AC 678 ms
140,484 KB
testcase_13 AC 712 ms
140,612 KB
testcase_14 AC 689 ms
140,492 KB
testcase_15 AC 705 ms
140,624 KB
testcase_16 AC 712 ms
140,336 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()))
dat=[]
for i in range(N):
    dat.append((C[i]-B[i],A[i]+C[i],A[i]+B[i]))
dat.sort()
ans=0
for i in range(N):
    if i<K:
        ans+=dat[i][2]
    else:
        ans+=dat[i][1]
print(ans)
0