結果

問題 No.2150 Site Supporter
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-12-07 19:23:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 108,316 KB
最終ジャッジ日時 2024-10-14 00:06:35
合計ジャッジ時間 3,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 81 ms
80,512 KB
testcase_09 AC 148 ms
107,756 KB
testcase_10 AC 98 ms
94,872 KB
testcase_11 AC 138 ms
102,844 KB
testcase_12 AC 86 ms
89,340 KB
testcase_13 AC 65 ms
82,724 KB
testcase_14 AC 34 ms
51,456 KB
testcase_15 AC 35 ms
51,840 KB
testcase_16 AC 34 ms
51,968 KB
testcase_17 AC 155 ms
108,316 KB
testcase_18 AC 86 ms
91,392 KB
testcase_19 AC 59 ms
79,364 KB
testcase_20 AC 115 ms
99,392 KB
testcase_21 AC 50 ms
72,320 KB
testcase_22 AC 145 ms
104,660 KB
testcase_23 AC 36 ms
52,224 KB
testcase_24 AC 33 ms
51,712 KB
testcase_25 AC 33 ms
51,968 KB
testcase_26 AC 33 ms
51,712 KB
testcase_27 AC 104 ms
96,688 KB
testcase_28 AC 93 ms
96,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

N,K,X = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().split()))

inf = float("inf")
dp = [[inf,inf] for i in range(N+1)]
dp[0] = [0,inf]

for i in range(N):

    dp[i+1][0] = min(dp[i]) + A[i]

    dp[i+1][1] = min( dp[i][0]+K+X , dp[i][1]+K )

print (min(dp[-1]))
0