結果

問題 No.2028 Even Choice
ユーザー 👑 rin204rin204
提出日時 2022-08-20 15:19:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 112,308 KB
最終ジャッジ日時 2024-10-09 08:01:49
合計ジャッジ時間 6,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
101,760 KB
testcase_01 AC 227 ms
101,760 KB
testcase_02 AC 256 ms
101,888 KB
testcase_03 AC 124 ms
112,308 KB
testcase_04 AC 144 ms
111,160 KB
testcase_05 AC 142 ms
80,640 KB
testcase_06 AC 227 ms
103,296 KB
testcase_07 AC 143 ms
83,072 KB
testcase_08 AC 206 ms
95,104 KB
testcase_09 AC 191 ms
97,792 KB
testcase_10 AC 93 ms
82,816 KB
testcase_11 AC 143 ms
80,000 KB
testcase_12 AC 132 ms
77,184 KB
testcase_13 AC 165 ms
101,120 KB
testcase_14 AC 159 ms
82,944 KB
testcase_15 AC 42 ms
51,840 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 45 ms
53,120 KB
testcase_19 AC 48 ms
58,112 KB
testcase_20 AC 56 ms
61,568 KB
testcase_21 AC 54 ms
60,288 KB
testcase_22 AC 49 ms
58,496 KB
testcase_23 AC 42 ms
52,096 KB
testcase_24 AC 42 ms
52,480 KB
testcase_25 AC 42 ms
52,096 KB
testcase_26 AC 42 ms
52,224 KB
testcase_27 AC 42 ms
52,096 KB
testcase_28 AC 88 ms
92,416 KB
testcase_29 AC 76 ms
82,816 KB
testcase_30 AC 69 ms
74,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, k = map(int, input().split())
A = list(map(int, input().split()))
tot = 0
hq = []
ans = 0
for i in range(n - 1, -1, -1):
    a = A[i]
    tot += a
    heappush(hq, a)
    if len(hq) == k:
        if i & 1:
            ans = max(ans, tot)
        tot -= heappop(hq)
print(ans)


0