結果

問題 No.2028 Even Choice
ユーザー titiatitia
提出日時 2022-08-05 23:20:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,708 KB
最終ジャッジ日時 2024-09-15 20:56:51
合計ジャッジ時間 6,222 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 412 ms
32,428 KB
testcase_01 AC 341 ms
32,428 KB
testcase_02 AC 447 ms
32,684 KB
testcase_03 AC 244 ms
32,524 KB
testcase_04 AC 280 ms
32,708 KB
testcase_05 AC 94 ms
15,384 KB
testcase_06 AC 396 ms
30,444 KB
testcase_07 AC 106 ms
16,440 KB
testcase_08 AC 304 ms
24,092 KB
testcase_09 AC 266 ms
26,600 KB
testcase_10 AC 90 ms
16,536 KB
testcase_11 AC 104 ms
14,516 KB
testcase_12 AC 60 ms
12,288 KB
testcase_13 AC 211 ms
28,004 KB
testcase_14 AC 148 ms
16,684 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 32 ms
11,008 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 226 ms
24,624 KB
testcase_29 AC 150 ms
19,968 KB
testcase_30 AC 119 ms
16,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import heappop,heappush

N,K=map(int,input().split())
A=list(map(int,input().split()))

H=[]
SUM=0
ANS=0

for i in range(N-1,0,-1):
    if i%2==1 and len(H)==K-1:
        ANS=max(ANS,SUM+A[i])

    heappush(H,A[i])
    SUM+=A[i]
    while len(H)>K-1:
        x=heappop(H)
        SUM-=x

print(ANS)
    
0