結果

問題 No.2150 Site Supporter
ユーザー ShirotsumeShirotsume
提出日時 2022-12-07 01:00:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 103,616 KB
最終ジャッジ日時 2024-10-13 11:47:02
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,460 KB
testcase_01 AC 42 ms
53,156 KB
testcase_02 AC 42 ms
55,044 KB
testcase_03 AC 43 ms
53,744 KB
testcase_04 AC 42 ms
54,668 KB
testcase_05 AC 43 ms
54,092 KB
testcase_06 AC 42 ms
53,744 KB
testcase_07 AC 43 ms
54,184 KB
testcase_08 AC 55 ms
70,668 KB
testcase_09 AC 98 ms
103,616 KB
testcase_10 AC 76 ms
88,644 KB
testcase_11 AC 90 ms
101,336 KB
testcase_12 AC 65 ms
81,036 KB
testcase_13 AC 57 ms
73,316 KB
testcase_14 AC 42 ms
55,488 KB
testcase_15 AC 42 ms
54,480 KB
testcase_16 AC 42 ms
54,792 KB
testcase_17 AC 103 ms
101,164 KB
testcase_18 AC 72 ms
86,060 KB
testcase_19 AC 57 ms
70,380 KB
testcase_20 AC 81 ms
95,040 KB
testcase_21 AC 53 ms
68,704 KB
testcase_22 AC 95 ms
103,240 KB
testcase_23 AC 42 ms
54,816 KB
testcase_24 AC 46 ms
54,240 KB
testcase_25 AC 45 ms
55,464 KB
testcase_26 AC 43 ms
55,260 KB
testcase_27 AC 77 ms
90,772 KB
testcase_28 AC 77 ms
90,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
n, k, x = mi()

a = li()

dp = [0, inf]


for v in a:
    e = [0,0]
    e[0] = min(dp[0] + v, dp[1] + v)
    e[1] = min(dp[0] + k + x, dp[1] + k)
    dp = e
print(min(dp))
0