結果

問題 No.3656 Game Scores and Costs
コンテスト
ユーザー 👑 cologne
提出日時 2026-09-14 16:46:29
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 163 ms / 2,000 ms
+ 480µs
コード長 939 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 74 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 127,452 KB
最終ジャッジ日時 2026-09-14 16:46:37
合計ジャッジ時間 5,772 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import heapq
import sys
from itertools import count

sys.setrecursionlimit(10 ** 6)
from typing import List, Tuple

int1 = lambda x: int(x) - 1
input = lambda: sys.stdin.readline().rstrip('\n')
ii = lambda: int(input())
vi = lambda: list(map(int, input().split()))
vi1 = lambda: list(map(int1, input().split()))


def dbg(*args, **kwargs):
    print(*(repr(arg) for arg in args), *(f'{k}: {repr(v)}' for k, v in kwargs.items()),
          sep='; ', file=sys.stderr, flush=True)


def main():
    n, k, x = vi()
    a = vi()
    h = []
    s = 0
    ans = -float('inf')
    for i in range(n):
        heapq.heappush(h, a[i])
        s += a[i]
        while len(h) > k:
            s -= heapq.heappop(h)
        s -= x
        ans = max(ans, s)
    return ans


def _start():
    if (ret := main()) is not None:
        print(*ret) if isinstance(ret, List) or isinstance(ret, Tuple) else print(ret)


if __name__ == '__main__':
    _start()
0