結果

問題 No.2852 Yakitori Optimization Problem
ユーザー ryuusagiryuusagi
提出日時 2024-08-25 13:47:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 139,828 KB
最終ジャッジ日時 2024-08-25 13:47:55
合計ジャッジ時間 9,903 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
92,704 KB
testcase_01 AC 492 ms
125,048 KB
testcase_02 AC 409 ms
122,852 KB
testcase_03 AC 670 ms
138,372 KB
testcase_04 AC 506 ms
124,832 KB
testcase_05 AC 202 ms
93,728 KB
testcase_06 AC 92 ms
79,332 KB
testcase_07 AC 521 ms
125,820 KB
testcase_08 AC 81 ms
77,536 KB
testcase_09 AC 630 ms
127,324 KB
testcase_10 AC 675 ms
133,704 KB
testcase_11 AC 653 ms
134,332 KB
testcase_12 AC 667 ms
133,704 KB
testcase_13 AC 666 ms
139,748 KB
testcase_14 AC 666 ms
133,836 KB
testcase_15 WA -
testcase_16 AC 676 ms
139,628 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()))
l = sorted([(b[i] - c[i], i) for i in range(n)])
s = {i for _, i in l[-k:]}
ans = 0
for i in range(n):
    ans += a[i]
    if i in s:
        ans += b[i]
    else:
        ans += c[i]
print(ans)
0