結果

問題 No.2028 Even Choice
ユーザー KudeKude
提出日時 2022-08-05 21:32:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 112,504 KB
最終ジャッジ日時 2024-09-15 17:45:25
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
105,392 KB
testcase_01 AC 198 ms
105,132 KB
testcase_02 AC 205 ms
105,532 KB
testcase_03 AC 126 ms
112,504 KB
testcase_04 AC 129 ms
111,228 KB
testcase_05 AC 118 ms
81,664 KB
testcase_06 AC 194 ms
101,732 KB
testcase_07 AC 123 ms
84,352 KB
testcase_08 AC 156 ms
97,792 KB
testcase_09 AC 175 ms
105,856 KB
testcase_10 AC 93 ms
83,840 KB
testcase_11 AC 116 ms
80,896 KB
testcase_12 AC 109 ms
76,928 KB
testcase_13 AC 157 ms
104,192 KB
testcase_14 AC 123 ms
84,352 KB
testcase_15 AC 42 ms
52,224 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 43 ms
52,608 KB
testcase_19 AC 43 ms
52,736 KB
testcase_20 AC 51 ms
59,136 KB
testcase_21 AC 49 ms
59,264 KB
testcase_22 AC 48 ms
58,112 KB
testcase_23 AC 42 ms
52,224 KB
testcase_24 AC 42 ms
52,352 KB
testcase_25 AC 42 ms
52,224 KB
testcase_26 AC 42 ms
52,352 KB
testcase_27 AC 42 ms
51,968 KB
testcase_28 AC 95 ms
98,432 KB
testcase_29 AC 75 ms
83,840 KB
testcase_30 AC 66 ms
74,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappushpop
n, k = map(int, input().split())
sm = 0
q = []
ans = 0
for i, x in reversed(list(enumerate(map(int, input().split()), 1))):
    if len(q) < k - 1:
        heappush(q, x)
        sm += x
    else:
        if i % 2 == 0:
            ans = max(ans, sm + x)
        sm += x - heappushpop(q, x)
print(ans)
0