結果

問題 No.2028 Even Choice
ユーザー lloyzlloyz
提出日時 2022-08-06 00:10:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,204 KB
最終ジャッジ日時 2024-09-15 22:09:34
合計ジャッジ時間 5,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
101,888 KB
testcase_01 AC 239 ms
101,888 KB
testcase_02 AC 268 ms
101,632 KB
testcase_03 AC 129 ms
112,196 KB
testcase_04 AC 152 ms
112,204 KB
testcase_05 AC 149 ms
80,768 KB
testcase_06 AC 245 ms
103,552 KB
testcase_07 AC 152 ms
83,072 KB
testcase_08 AC 219 ms
94,848 KB
testcase_09 AC 215 ms
97,920 KB
testcase_10 AC 105 ms
82,816 KB
testcase_11 AC 165 ms
79,744 KB
testcase_12 AC 139 ms
77,312 KB
testcase_13 AC 177 ms
101,248 KB
testcase_14 AC 179 ms
82,944 KB
testcase_15 AC 43 ms
52,096 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 42 ms
52,224 KB
testcase_18 AC 45 ms
53,120 KB
testcase_19 AC 49 ms
58,240 KB
testcase_20 AC 57 ms
61,312 KB
testcase_21 AC 55 ms
60,160 KB
testcase_22 AC 49 ms
58,368 KB
testcase_23 AC 42 ms
52,480 KB
testcase_24 AC 42 ms
52,096 KB
testcase_25 AC 42 ms
52,224 KB
testcase_26 AC 41 ms
52,224 KB
testcase_27 AC 42 ms
52,096 KB
testcase_28 AC 90 ms
92,928 KB
testcase_29 AC 80 ms
82,944 KB
testcase_30 AC 72 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

n, k = map(int, input().split())
A = list(map(int, input().split()))

ans = 0
res = 0
H = []
heapify(H)
for i in range(n - 1, -1, -1):
    if i % 2 == 1 and len(H) == k - 1:
        ans = max(ans, res + A[i])
    heappush(H, A[i])
    res += A[i]
    if len(H) == k:
        res -= heappop(H)
print(ans)
0