結果

問題 No.2028 Even Choice
ユーザー ikomaikoma
提出日時 2022-08-05 23:30:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 112,056 KB
最終ジャッジ日時 2024-09-15 21:15:49
合計ジャッジ時間 5,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
100,744 KB
testcase_01 AC 205 ms
101,360 KB
testcase_02 AC 241 ms
100,716 KB
testcase_03 AC 125 ms
112,056 KB
testcase_04 AC 147 ms
110,924 KB
testcase_05 AC 122 ms
80,688 KB
testcase_06 AC 207 ms
101,760 KB
testcase_07 AC 134 ms
82,304 KB
testcase_08 AC 190 ms
93,568 KB
testcase_09 AC 174 ms
96,128 KB
testcase_10 AC 97 ms
82,432 KB
testcase_11 AC 125 ms
79,616 KB
testcase_12 AC 115 ms
76,160 KB
testcase_13 AC 160 ms
99,072 KB
testcase_14 AC 145 ms
82,048 KB
testcase_15 AC 44 ms
51,840 KB
testcase_16 AC 43 ms
51,968 KB
testcase_17 AC 42 ms
52,224 KB
testcase_18 AC 45 ms
53,376 KB
testcase_19 AC 49 ms
58,368 KB
testcase_20 AC 57 ms
61,440 KB
testcase_21 AC 54 ms
60,160 KB
testcase_22 AC 49 ms
58,240 KB
testcase_23 AC 42 ms
52,224 KB
testcase_24 AC 42 ms
52,480 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 42 ms
52,096 KB
testcase_27 AC 42 ms
51,712 KB
testcase_28 AC 88 ms
91,264 KB
testcase_29 AC 77 ms
81,664 KB
testcase_30 AC 69 ms
74,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *
N,K=map(int,input().split())
A=list(map(int,input().split()))

hp = []
sm = 0
ans = 0
for i in range(N-1,0,-1):
    while len(hp)>=K:
        d = heappop(hp)
        sm -= d
    heappush(hp,A[i])
    sm += A[i]
    if i%2==1:
        ans = max(ans, sm)
print(ans)
0