結果

問題 No.2028 Even Choice
ユーザー flippergoflippergo
提出日時 2024-11-19 08:46:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 112,160 KB
最終ジャッジ日時 2024-11-19 08:46:41
合計ジャッジ時間 6,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
102,016 KB
testcase_01 AC 266 ms
101,784 KB
testcase_02 AC 350 ms
101,768 KB
testcase_03 AC 116 ms
112,160 KB
testcase_04 AC 140 ms
111,740 KB
testcase_05 AC 154 ms
80,940 KB
testcase_06 AC 275 ms
103,424 KB
testcase_07 AC 165 ms
83,200 KB
testcase_08 AC 284 ms
95,232 KB
testcase_09 AC 233 ms
97,808 KB
testcase_10 AC 84 ms
82,792 KB
testcase_11 AC 173 ms
80,128 KB
testcase_12 AC 139 ms
77,184 KB
testcase_13 AC 161 ms
101,376 KB
testcase_14 AC 201 ms
83,392 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 45 ms
52,352 KB
testcase_17 AC 42 ms
52,728 KB
testcase_18 AC 42 ms
53,376 KB
testcase_19 AC 47 ms
58,880 KB
testcase_20 AC 53 ms
61,696 KB
testcase_21 AC 53 ms
60,544 KB
testcase_22 AC 46 ms
58,848 KB
testcase_23 AC 42 ms
52,096 KB
testcase_24 AC 42 ms
52,224 KB
testcase_25 AC 41 ms
52,480 KB
testcase_26 AC 41 ms
52,352 KB
testcase_27 AC 42 ms
52,096 KB
testcase_28 AC 89 ms
95,432 KB
testcase_29 AC 73 ms
84,864 KB
testcase_30 AC 68 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,K = map(int,input().split())
A = list(map(int,input().split()))
heap = []
ans = 0
for i in range(N-1,N-K,-1):
    ans += A[i]
    heapq.heappush(heap,A[i])
cur = N-K
if cur%2==0:
    ans += A[cur]
    heapq.heappush(heap,A[cur])
    ans -= heapq.heappop(heap)
    cur -= 1
ans += A[cur]
cnt = ans
while cur>=3:
    heapq.heappush(heap,A[cur])
    cnt -= heapq.heappop(heap)
    cur -= 1
    cnt += A[cur]
    heapq.heappush(heap,A[cur])
    cnt -= heapq.heappop(heap)
    cur -= 1
    cnt += A[cur]
    ans = max(cnt,ans)
print(ans)
0