結果

問題 No.2150 Site Supporter
ユーザー roarisroaris
提出日時 2022-12-07 01:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 107,124 KB
最終ジャッジ日時 2024-10-13 11:57:17
合計ジャッジ時間 3,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,316 KB
testcase_01 AC 38 ms
52,568 KB
testcase_02 AC 38 ms
51,616 KB
testcase_03 AC 38 ms
53,100 KB
testcase_04 AC 38 ms
52,556 KB
testcase_05 AC 38 ms
53,040 KB
testcase_06 AC 37 ms
52,404 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 53 ms
71,004 KB
testcase_09 AC 101 ms
104,816 KB
testcase_10 AC 83 ms
95,544 KB
testcase_11 AC 93 ms
102,528 KB
testcase_12 AC 62 ms
80,512 KB
testcase_13 AC 56 ms
73,520 KB
testcase_14 AC 37 ms
51,964 KB
testcase_15 AC 38 ms
52,336 KB
testcase_16 AC 38 ms
53,368 KB
testcase_17 AC 103 ms
107,124 KB
testcase_18 AC 80 ms
91,584 KB
testcase_19 AC 55 ms
69,544 KB
testcase_20 AC 90 ms
99,136 KB
testcase_21 AC 52 ms
67,780 KB
testcase_22 AC 98 ms
104,556 KB
testcase_23 AC 38 ms
51,996 KB
testcase_24 AC 38 ms
53,448 KB
testcase_25 AC 38 ms
53,180 KB
testcase_26 AC 38 ms
51,568 KB
testcase_27 AC 83 ms
96,576 KB
testcase_28 AC 85 ms
96,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K, X = map(int, input().split())
A = list(map(int, input().split()))
dp = [[10**18]*2 for _ in range(N+1)]
dp[0][0] = 0

for i in range(N):
    dp[i+1][0] = min(dp[i][0]+A[i], dp[i][1]+A[i])
    dp[i+1][1] = min(dp[i][0]+X+K, dp[i][1]+K)

print(min(dp[N]))
0