結果

問題 No.2028 Even Choice
ユーザー roarisroaris
提出日時 2022-08-06 07:37:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 400 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,524 KB
最終ジャッジ日時 2024-09-16 04:15:51
合計ジャッジ時間 5,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
101,128 KB
testcase_01 AC 196 ms
101,188 KB
testcase_02 AC 201 ms
101,460 KB
testcase_03 AC 110 ms
112,524 KB
testcase_04 AC 110 ms
110,604 KB
testcase_05 AC 117 ms
80,492 KB
testcase_06 AC 188 ms
101,760 KB
testcase_07 AC 123 ms
82,164 KB
testcase_08 AC 156 ms
94,208 KB
testcase_09 AC 168 ms
96,640 KB
testcase_10 AC 79 ms
82,460 KB
testcase_11 AC 122 ms
79,744 KB
testcase_12 AC 108 ms
76,908 KB
testcase_13 AC 147 ms
99,328 KB
testcase_14 AC 129 ms
82,132 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 41 ms
52,736 KB
testcase_19 AC 40 ms
52,352 KB
testcase_20 AC 47 ms
59,392 KB
testcase_21 AC 47 ms
59,612 KB
testcase_22 AC 45 ms
58,624 KB
testcase_23 RE -
testcase_24 AC 40 ms
52,096 KB
testcase_25 RE -
testcase_26 AC 39 ms
52,480 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
pq = []
s = 0

for i in range(N-1, N-K, -1):
    heappush(pq, A[i])
    s += A[i]

ans = 0

for i in range(N-K, -1, -1):
    if i%2==1:
        ans = max(ans, A[i]+s)
    
    if pq[0]<A[i]:
        s -= heappop(pq)
        heappush(pq, A[i])
        s += A[i]

print(ans)
0