結果

問題 No.2028 Even Choice
ユーザー asumo0729asumo0729
提出日時 2022-08-06 15:52:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,292 KB
最終ジャッジ日時 2024-09-16 10:58:24
合計ジャッジ時間 5,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
96,000 KB
testcase_01 AC 205 ms
95,616 KB
testcase_02 AC 227 ms
95,368 KB
testcase_03 AC 103 ms
100,292 KB
testcase_04 AC 130 ms
100,224 KB
testcase_05 AC 131 ms
79,132 KB
testcase_06 AC 220 ms
93,696 KB
testcase_07 AC 137 ms
80,384 KB
testcase_08 AC 195 ms
87,808 KB
testcase_09 AC 184 ms
89,728 KB
testcase_10 AC 79 ms
80,512 KB
testcase_11 AC 143 ms
78,848 KB
testcase_12 AC 132 ms
77,592 KB
testcase_13 AC 148 ms
91,264 KB
testcase_14 AC 153 ms
80,000 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 41 ms
52,608 KB
testcase_18 AC 42 ms
53,504 KB
testcase_19 AC 45 ms
58,240 KB
testcase_20 AC 51 ms
61,312 KB
testcase_21 AC 51 ms
60,288 KB
testcase_22 AC 48 ms
58,752 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 41 ms
52,224 KB
testcase_27 AC 40 ms
52,608 KB
testcase_28 AC 77 ms
84,736 KB
testcase_29 AC 67 ms
77,696 KB
testcase_30 AC 68 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
N, K = map(int, input().split())
A = [int(a) for a in input().split()]

hq = []
heapify(hq)
s = 0
for i in range(N - K + 1, N):
    heappush(hq, A[i])
    s += A[i]

ans = -1 << 60
for i in range(N - K, -1, -1):
    if i & 1:
        ans = max(ans, s + A[i])
    s += A[i]
    heappush(hq, A[i])
    m = heappop(hq)
    s -= m
print(ans)
0