結果

問題 No.2150 Site Supporter
ユーザー qibqib
提出日時 2022-12-18 00:49:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 108,480 KB
最終ジャッジ日時 2024-04-28 15:45:23
合計ジャッジ時間 4,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,408 KB
testcase_01 AC 38 ms
52,424 KB
testcase_02 AC 38 ms
51,776 KB
testcase_03 AC 38 ms
51,872 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 38 ms
52,892 KB
testcase_06 AC 37 ms
52,144 KB
testcase_07 AC 38 ms
52,120 KB
testcase_08 AC 68 ms
79,228 KB
testcase_09 AC 151 ms
105,104 KB
testcase_10 AC 102 ms
89,812 KB
testcase_11 AC 139 ms
101,656 KB
testcase_12 AC 86 ms
85,168 KB
testcase_13 AC 74 ms
81,564 KB
testcase_14 AC 38 ms
53,164 KB
testcase_15 AC 38 ms
52,804 KB
testcase_16 AC 38 ms
51,988 KB
testcase_17 AC 166 ms
108,480 KB
testcase_18 AC 96 ms
86,480 KB
testcase_19 AC 69 ms
78,904 KB
testcase_20 AC 123 ms
96,048 KB
testcase_21 AC 64 ms
77,052 KB
testcase_22 AC 151 ms
105,012 KB
testcase_23 AC 38 ms
52,940 KB
testcase_24 AC 37 ms
52,488 KB
testcase_25 AC 37 ms
52,216 KB
testcase_26 AC 38 ms
51,940 KB
testcase_27 AC 107 ms
91,776 KB
testcase_28 AC 105 ms
91,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

n, k, x = map(int, input().split())
a = list(map(int, input().split()))

dp = [[INF for _ in range(2)] for _ in range(n + 1)]
dp[0][0] = 0
for i in range(n):
  dp[i + 1][0] = min(dp[i]) + a[i]
  dp[i + 1][1] = k + min(dp[i][0] + x, dp[i][1])

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