結果

問題 No.2852 Yakitori Optimization Problem
ユーザー nmoonnmoon
提出日時 2024-09-09 15:56:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 137,956 KB
最終ジャッジ日時 2024-09-09 15:56:41
合計ジャッジ時間 4,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
92,756 KB
testcase_01 AC 162 ms
124,428 KB
testcase_02 AC 138 ms
114,904 KB
testcase_03 AC 192 ms
137,956 KB
testcase_04 AC 166 ms
124,060 KB
testcase_05 AC 88 ms
93,364 KB
testcase_06 AC 53 ms
73,960 KB
testcase_07 AC 165 ms
124,636 KB
testcase_08 AC 50 ms
70,148 KB
testcase_09 AC 182 ms
117,124 KB
testcase_10 AC 195 ms
133,280 KB
testcase_11 AC 193 ms
133,296 KB
testcase_12 AC 190 ms
132,920 KB
testcase_13 AC 191 ms
133,168 KB
testcase_14 AC 191 ms
132,920 KB
testcase_15 AC 192 ms
132,784 KB
testcase_16 AC 193 ms
133,176 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)
d=[b[i]-c[i] for i in range(n)]
d.sort()
d.reverse()
e=d[0:k]
ans+=sum(e)
print(ans)
0