結果

問題 No.2028 Even Choice
ユーザー とりゐとりゐ
提出日時 2022-06-29 21:59:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,452 KB
最終ジャッジ日時 2024-11-30 02:04:52
合計ジャッジ時間 6,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
101,760 KB
testcase_01 AC 241 ms
101,504 KB
testcase_02 AC 267 ms
101,504 KB
testcase_03 AC 128 ms
112,452 KB
testcase_04 AC 149 ms
112,132 KB
testcase_05 AC 146 ms
80,768 KB
testcase_06 AC 241 ms
103,552 KB
testcase_07 AC 154 ms
82,560 KB
testcase_08 AC 224 ms
95,232 KB
testcase_09 AC 210 ms
98,560 KB
testcase_10 AC 102 ms
82,560 KB
testcase_11 AC 165 ms
79,872 KB
testcase_12 AC 145 ms
77,184 KB
testcase_13 AC 174 ms
100,736 KB
testcase_14 AC 176 ms
82,688 KB
testcase_15 AC 43 ms
52,224 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 42 ms
52,352 KB
testcase_18 AC 46 ms
52,992 KB
testcase_19 AC 50 ms
58,112 KB
testcase_20 AC 58 ms
61,824 KB
testcase_21 AC 55 ms
60,160 KB
testcase_22 AC 51 ms
58,624 KB
testcase_23 AC 43 ms
52,224 KB
testcase_24 AC 42 ms
52,224 KB
testcase_25 AC 43 ms
51,712 KB
testcase_26 AC 44 ms
52,096 KB
testcase_27 AC 43 ms
52,096 KB
testcase_28 AC 91 ms
92,800 KB
testcase_29 AC 81 ms
83,072 KB
testcase_30 AC 73 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush

n,k=map(int,input().split())
a=list(map(int,input().split()))

mx=0
hq=[]

sm=0
for i in range(n-1,-1,-1):
  if i%2==1 and len(hq)==k-1:
    mx=max(mx,sm+a[i])
  sm+=a[i]
  heappush(hq,a[i])
  if len(hq)>=k:
    sm-=heappop(hq)

print(mx)
0