結果

問題 No.2852 Yakitori Optimization Problem
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-25 17:28:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 138,368 KB
最終ジャッジ日時 2024-10-25 17:29:02
合計ジャッジ時間 7,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
92,712 KB
testcase_01 AC 184 ms
121,868 KB
testcase_02 AC 139 ms
116,312 KB
testcase_03 AC 195 ms
138,368 KB
testcase_04 AC 168 ms
124,344 KB
testcase_05 AC 89 ms
93,328 KB
testcase_06 AC 56 ms
75,756 KB
testcase_07 AC 166 ms
124,924 KB
testcase_08 AC 52 ms
71,644 KB
testcase_09 AC 209 ms
117,516 KB
testcase_10 AC 194 ms
133,296 KB
testcase_11 AC 195 ms
133,552 KB
testcase_12 AC 196 ms
133,416 KB
testcase_13 AC 196 ms
133,404 KB
testcase_14 AC 196 ms
133,500 KB
testcase_15 AC 207 ms
133,164 KB
testcase_16 AC 197 ms
133,048 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()))
g=sum(a[i]+c[i] for i in range(n))
print(g+sum(sorted([b[i]-c[i] for i in range(n)])[n-k:]))
0