結果

問題 No.2150 Site Supporter
ユーザー qibqib
提出日時 2022-12-18 00:49:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-11-17 09:14:27
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,936 KB
testcase_01 AC 36 ms
51,904 KB
testcase_02 AC 37 ms
52,080 KB
testcase_03 AC 37 ms
52,236 KB
testcase_04 AC 37 ms
52,364 KB
testcase_05 AC 39 ms
52,192 KB
testcase_06 AC 36 ms
53,656 KB
testcase_07 AC 39 ms
52,232 KB
testcase_08 AC 64 ms
79,720 KB
testcase_09 AC 159 ms
104,832 KB
testcase_10 AC 107 ms
89,440 KB
testcase_11 AC 147 ms
101,968 KB
testcase_12 AC 92 ms
85,180 KB
testcase_13 AC 76 ms
80,980 KB
testcase_14 AC 38 ms
51,712 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 169 ms
108,416 KB
testcase_18 AC 96 ms
86,656 KB
testcase_19 AC 68 ms
78,716 KB
testcase_20 AC 129 ms
96,068 KB
testcase_21 AC 66 ms
77,188 KB
testcase_22 AC 155 ms
105,216 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 38 ms
51,456 KB
testcase_25 AC 37 ms
51,456 KB
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 113 ms
91,872 KB
testcase_28 AC 110 ms
91,520 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