結果

問題 No.2028 Even Choice
ユーザー ああいいああいい
提出日時 2022-08-07 16:36:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 435 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 104,104 KB
最終ジャッジ日時 2024-09-17 09:49:59
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
102,184 KB
testcase_01 AC 231 ms
102,000 KB
testcase_02 AC 265 ms
101,980 KB
testcase_03 AC 117 ms
102,144 KB
testcase_04 AC 133 ms
101,956 KB
testcase_05 AC 143 ms
81,068 KB
testcase_06 AC 247 ms
104,104 KB
testcase_07 AC 144 ms
82,980 KB
testcase_08 AC 215 ms
95,172 KB
testcase_09 AC 202 ms
99,072 KB
testcase_10 AC 94 ms
83,072 KB
testcase_11 AC 158 ms
80,256 KB
testcase_12 AC 128 ms
77,392 KB
testcase_13 AC 161 ms
101,808 KB
testcase_14 AC 168 ms
82,816 KB
testcase_15 AC 39 ms
52,480 KB
testcase_16 AC 38 ms
52,480 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 41 ms
52,992 KB
testcase_19 AC 41 ms
53,120 KB
testcase_20 AC 53 ms
62,720 KB
testcase_21 AC 46 ms
59,776 KB
testcase_22 AC 45 ms
58,880 KB
testcase_23 RE -
testcase_24 AC 38 ms
51,968 KB
testcase_25 RE -
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

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)

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