結果

問題 No.2028 Even Choice
ユーザー asumo0729asumo0729
提出日時 2022-08-06 12:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,096 KB
最終ジャッジ日時 2024-09-16 08:38:32
合計ジャッジ時間 5,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
101,888 KB
testcase_01 AC 199 ms
101,760 KB
testcase_02 AC 224 ms
101,632 KB
testcase_03 AC 112 ms
112,096 KB
testcase_04 AC 137 ms
112,048 KB
testcase_05 AC 121 ms
81,152 KB
testcase_06 AC 204 ms
103,680 KB
testcase_07 AC 119 ms
82,816 KB
testcase_08 AC 171 ms
95,232 KB
testcase_09 AC 169 ms
98,432 KB
testcase_10 AC 79 ms
82,944 KB
testcase_11 AC 124 ms
79,744 KB
testcase_12 AC 115 ms
77,184 KB
testcase_13 AC 147 ms
100,864 KB
testcase_14 AC 136 ms
82,816 KB
testcase_15 AC 37 ms
52,352 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 38 ms
52,528 KB
testcase_18 AC 45 ms
58,368 KB
testcase_19 AC 40 ms
53,120 KB
testcase_20 AC 52 ms
62,592 KB
testcase_21 AC 48 ms
60,800 KB
testcase_22 AC 45 ms
58,880 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 105 ms
95,872 KB
testcase_29 AC 92 ms
88,656 KB
testcase_30 AC 85 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
N, K = map(int, input().split())
A = list(map(int, input().split()))
hp = []
heapify(hp)
s = 0
ans = 0

for i in range(N - 1, -1, -1):
    if (N - 1 - i) < K -1:
        heappush(hp, A[i])
        s += A[i]
    else:
        if i & 1:
            while len(hp) != K - 1:
                a = heappop(hp)
                s -= a
            ans = max(ans, s + A[i])
        heappush(hp, A[i])
        s += A[i] 
print(ans)
0