結果

問題 No.2852 Yakitori Optimization Problem
ユーザー titiatitia
提出日時 2024-08-28 01:33:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,096 KB
最終ジャッジ日時 2024-08-28 01:33:13
合計ジャッジ時間 9,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
20,024 KB
testcase_01 AC 240 ms
38,104 KB
testcase_02 AC 195 ms
33,480 KB
testcase_03 AC 312 ms
48,120 KB
testcase_04 AC 289 ms
40,648 KB
testcase_05 AC 110 ms
22,320 KB
testcase_06 AC 55 ms
14,208 KB
testcase_07 AC 258 ms
40,332 KB
testcase_08 AC 48 ms
13,568 KB
testcase_09 AC 311 ms
47,576 KB
testcase_10 AC 330 ms
48,960 KB
testcase_11 AC 352 ms
48,976 KB
testcase_12 AC 329 ms
49,096 KB
testcase_13 AC 337 ms
48,960 KB
testcase_14 AC 333 ms
48,956 KB
testcase_15 AC 326 ms
49,088 KB
testcase_16 AC 366 ms
48,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))

X=[B[i]-C[i] for i in range(N)]

X.sort(reverse=True)

print(sum(A)+sum(C)+sum(X[:K]))
0