結果

問題 No.2028 Even Choice
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-16 00:12:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,856 KB
最終ジャッジ日時 2024-10-02 12:29:26
合計ジャッジ時間 6,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
102,016 KB
testcase_01 AC 282 ms
102,016 KB
testcase_02 AC 337 ms
102,144 KB
testcase_03 AC 115 ms
112,856 KB
testcase_04 AC 139 ms
112,472 KB
testcase_05 AC 179 ms
81,024 KB
testcase_06 AC 305 ms
104,056 KB
testcase_07 AC 177 ms
83,328 KB
testcase_08 AC 293 ms
95,104 KB
testcase_09 AC 261 ms
98,304 KB
testcase_10 AC 99 ms
83,184 KB
testcase_11 AC 211 ms
80,640 KB
testcase_12 AC 133 ms
78,208 KB
testcase_13 AC 178 ms
100,608 KB
testcase_14 AC 237 ms
82,816 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 41 ms
52,352 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 42 ms
53,376 KB
testcase_19 AC 45 ms
58,368 KB
testcase_20 AC 51 ms
61,568 KB
testcase_21 AC 49 ms
60,416 KB
testcase_22 AC 46 ms
59,008 KB
testcase_23 AC 38 ms
52,864 KB
testcase_24 AC 39 ms
52,864 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 39 ms
52,480 KB
testcase_28 AC 86 ms
95,616 KB
testcase_29 AC 72 ms
84,864 KB
testcase_30 AC 65 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hq
N, K = map(int, input().split())
A = list(map(int, input().split()))
task = []
s = 0
ans = 0


def push(x):
    global s
    hq.heappush(task, x)
    s += x
    if len(task) >= K:
        s -= hq.heappop(task)


for i in range(N//2*2-1, 0, -2):
    if i+1 < N:
        push(A[i+1])
    ans = max(ans, s+A[i])
    push(A[i])

print(ans)
0