結果

問題 No.2150 Site Supporter
ユーザー 👑 rin204rin204
提出日時 2022-12-07 15:12:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-04-21 22:52:59
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
51,712 KB
testcase_01 AC 52 ms
51,840 KB
testcase_02 AC 50 ms
51,968 KB
testcase_03 AC 50 ms
51,584 KB
testcase_04 AC 49 ms
51,584 KB
testcase_05 AC 49 ms
51,712 KB
testcase_06 AC 52 ms
51,840 KB
testcase_07 AC 51 ms
51,584 KB
testcase_08 AC 73 ms
68,224 KB
testcase_09 AC 132 ms
104,064 KB
testcase_10 AC 99 ms
88,064 KB
testcase_11 AC 120 ms
100,608 KB
testcase_12 AC 85 ms
79,488 KB
testcase_13 AC 75 ms
71,424 KB
testcase_14 AC 49 ms
51,840 KB
testcase_15 AC 49 ms
51,712 KB
testcase_16 AC 49 ms
51,584 KB
testcase_17 AC 133 ms
107,392 KB
testcase_18 AC 92 ms
84,352 KB
testcase_19 AC 71 ms
67,968 KB
testcase_20 AC 106 ms
95,104 KB
testcase_21 AC 68 ms
65,152 KB
testcase_22 AC 126 ms
104,320 KB
testcase_23 AC 50 ms
51,968 KB
testcase_24 AC 50 ms
51,584 KB
testcase_25 AC 49 ms
51,840 KB
testcase_26 AC 49 ms
51,968 KB
testcase_27 AC 100 ms
90,496 KB
testcase_28 AC 99 ms
90,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0, 1 << 60]
for a in A:
    ndp = [0, 0]
    ndp[0] = min(dp[0] + a, dp[1] + a)
    ndp[1] = min(dp[0] + k + x, dp[1] + k)
    dp = ndp

print(min(dp))
0