結果

問題 No.2150 Site Supporter
ユーザー harurunharurun
提出日時 2022-12-07 02:03:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,316 KB
最終ジャッジ日時 2024-10-13 12:36:31
合計ジャッジ時間 7,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 119 ms
16,036 KB
testcase_09 AC 619 ms
47,628 KB
testcase_10 AC 321 ms
28,940 KB
testcase_11 AC 577 ms
45,200 KB
testcase_12 AC 245 ms
24,016 KB
testcase_13 AC 150 ms
17,948 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 717 ms
51,316 KB
testcase_18 AC 275 ms
26,560 KB
testcase_19 AC 103 ms
15,136 KB
testcase_20 AC 459 ms
37,540 KB
testcase_21 AC 73 ms
13,312 KB
testcase_22 AC 629 ms
47,284 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 29 ms
10,624 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 379 ms
32,568 KB
testcase_28 AC 370 ms
31,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inf=10**18
s=0
N,K,X=map(int,input().split())
A=list(map(int,input().split()))
dp=[[inf,inf]for i in range(N+1)]
dp[0][0]=0
dp[0][1]=X
for i in range(N):
  dp[i+1][0]=min(dp[i+1][0],dp[i][0]+A[i])
  dp[i+1][1]=min(dp[i+1][1],dp[i][0]+X+K)
  dp[i+1][0]=min(dp[i+1][0],dp[i][1]+A[i])
  dp[i+1][1]=min(dp[i+1][1],dp[i][1]+K)
print(min(dp[N]))
0