結果

問題 No.2028 Even Choice
ユーザー H20H20
提出日時 2022-08-05 21:49:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 112,768 KB
最終ジャッジ日時 2024-09-15 18:16:20
合計ジャッジ時間 5,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
102,016 KB
testcase_01 AC 210 ms
101,888 KB
testcase_02 AC 240 ms
101,760 KB
testcase_03 AC 111 ms
112,768 KB
testcase_04 AC 132 ms
111,568 KB
testcase_05 AC 129 ms
80,860 KB
testcase_06 AC 219 ms
103,296 KB
testcase_07 AC 132 ms
82,812 KB
testcase_08 AC 199 ms
94,720 KB
testcase_09 AC 190 ms
97,792 KB
testcase_10 AC 81 ms
82,688 KB
testcase_11 AC 138 ms
80,064 KB
testcase_12 AC 126 ms
77,312 KB
testcase_13 AC 149 ms
101,248 KB
testcase_14 AC 157 ms
82,560 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 42 ms
53,504 KB
testcase_19 AC 44 ms
58,496 KB
testcase_20 AC 51 ms
61,824 KB
testcase_21 AC 49 ms
60,680 KB
testcase_22 AC 45 ms
58,240 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 39 ms
51,712 KB
testcase_27 AC 38 ms
51,968 KB
testcase_28 AC 82 ms
95,360 KB
testcase_29 AC 71 ms
84,608 KB
testcase_30 AC 64 ms
76,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,K = map(int, input().split())
A = list(map(int, input().split()))
H = []
heapSum = 0
ans = 0
for i in reversed(range(N)):
    if len(H)<K-1:
        heapq.heappush(H,A[i])
        heapSum+=A[i]
    else:
        if i%2==1:
            ans = max(ans,A[i]+heapSum)
        heapSum+=A[i]
        heapq.heappush(H,A[i])
        heapSum-=heapq.heappop(H)
print(ans)
0