結果

問題 No.2150 Site Supporter
ユーザー terasa
提出日時 2022-12-07 00:09:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 114,120 KB
最終ジャッジ日時 2024-10-13 11:18:34
合計ジャッジ時間 3,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Callable, TypeVar, Optional
import sys
import itertools
import heapq
import bisect
import math
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


N, K, X = readints()
A = readlist()

INF = 1 << 50
dp = [0, INF]
for i in range(N):
    ndp = [None, None]
    ndp[1] = min(dp[1] + K, dp[0] + K + X)
    ndp[0] = min(dp[1] + A[i], dp[0] + A[i])
    dp = ndp
print(min(dp))
0