結果

問題 No.2028 Even Choice
ユーザー ああいいああいい
提出日時 2022-08-07 16:37:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 104,304 KB
最終ジャッジ日時 2024-09-17 09:51:27
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
101,800 KB
testcase_01 AC 208 ms
101,904 KB
testcase_02 AC 232 ms
102,072 KB
testcase_03 AC 106 ms
102,020 KB
testcase_04 AC 121 ms
101,692 KB
testcase_05 AC 130 ms
81,012 KB
testcase_06 AC 224 ms
104,304 KB
testcase_07 AC 133 ms
83,208 KB
testcase_08 AC 190 ms
95,020 KB
testcase_09 AC 176 ms
98,808 KB
testcase_10 AC 85 ms
82,892 KB
testcase_11 AC 141 ms
80,324 KB
testcase_12 AC 110 ms
77,448 KB
testcase_13 AC 141 ms
101,988 KB
testcase_14 AC 162 ms
82,680 KB
testcase_15 AC 39 ms
53,552 KB
testcase_16 AC 36 ms
52,704 KB
testcase_17 AC 34 ms
52,848 KB
testcase_18 AC 37 ms
53,564 KB
testcase_19 AC 36 ms
53,988 KB
testcase_20 AC 46 ms
62,732 KB
testcase_21 AC 41 ms
60,204 KB
testcase_22 AC 39 ms
59,848 KB
testcase_23 AC 34 ms
53,924 KB
testcase_24 AC 33 ms
53,008 KB
testcase_25 AC 34 ms
52,532 KB
testcase_26 AC 35 ms
52,932 KB
testcase_27 AC 33 ms
53,744 KB
testcase_28 AC 65 ms
92,016 KB
testcase_29 AC 57 ms
81,484 KB
testcase_30 AC 51 ms
73,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
import heapq
now = A[N - K + 1:N]
heapq.heapify(now)
ans = 0
nsum = sum(now)
#print(nsum)
import sys
if K == 1:
    ans = 0
    for i in range(N):
        if i & 1 and A[i] > ans:
            ans = A[i]
    print(ans)
    exit()
i = N - K
for j in range(i,-1,-1):
    if j & 1:
        tmp = nsum + A[j]
        if tmp > ans:
            ans = tmp
    t = heapq.heappop(now)
    if A[j] > t:
        heapq.heappush(now,A[j])
        nsum = nsum - t + A[j]
    else:
        heapq.heappush(now,t)
print(ans)
0