結果

問題 No.2150 Site Supporter
ユーザー ThetaTheta
提出日時 2022-12-07 13:18:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,564 KB
最終ジャッジ日時 2024-10-13 20:07:13
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 67 ms
16,156 KB
testcase_09 AC 289 ms
47,832 KB
testcase_10 AC 154 ms
29,108 KB
testcase_11 AC 279 ms
45,164 KB
testcase_12 AC 120 ms
24,100 KB
testcase_13 AC 81 ms
18,128 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 330 ms
51,564 KB
testcase_18 AC 136 ms
26,380 KB
testcase_19 AC 60 ms
15,272 KB
testcase_20 AC 226 ms
37,748 KB
testcase_21 AC 47 ms
13,440 KB
testcase_22 AC 290 ms
47,392 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 26 ms
10,624 KB
testcase_27 AC 187 ms
32,296 KB
testcase_28 AC 179 ms
31,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import inf


def main():
    N, K, X = map(int, input().split())
    A = list(map(int, input().split()))

    dp_table = [[inf, inf] for _ in range(N+1)]
    dp_table[0][0] = 0

    for day, problem_num in enumerate(A, 1):
        dp_table[day][0] = min(dp_table[day-1]) + problem_num
        dp_table[day][1] = min(dp_table[day-1][0] + X, dp_table[day-1][1]) + K
    
    print(min(dp_table[N]))


if __name__ == "__main__":
    main()
0