結果

問題 No.2852 Yakitori Optimization Problem
ユーザー 👑 KA37RIKA37RI
提出日時 2024-08-25 13:45:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 113,128 KB
最終ジャッジ日時 2024-08-25 13:45:56
合計ジャッジ時間 4,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
87,856 KB
testcase_01 AC 148 ms
109,712 KB
testcase_02 AC 131 ms
101,420 KB
testcase_03 AC 176 ms
106,172 KB
testcase_04 AC 156 ms
111,216 KB
testcase_05 AC 102 ms
90,344 KB
testcase_06 AC 62 ms
71,540 KB
testcase_07 AC 158 ms
113,128 KB
testcase_08 AC 55 ms
68,764 KB
testcase_09 AC 177 ms
108,004 KB
testcase_10 AC 178 ms
106,352 KB
testcase_11 AC 178 ms
106,380 KB
testcase_12 AC 178 ms
105,824 KB
testcase_13 AC 196 ms
106,992 KB
testcase_14 AC 178 ms
105,944 KB
testcase_15 WA -
testcase_16 AC 179 ms
106,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]
b = [int(x) for x in input().split()]
c = [int(x) for x in input().split()]

bmc = [b[i] - c[i] for i in range(n)]

print( sum(a) + sum(c) + sum(sorted(bmc)[-k:]) )
0