結果

問題 No.2150 Site Supporter
ユーザー ygd.ygd.
提出日時 2022-12-13 22:42:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,100 KB
最終ジャッジ日時 2024-04-25 06:17:17
合計ジャッジ時間 4,114 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 61 ms
13,512 KB
testcase_09 AC 217 ms
29,464 KB
testcase_10 AC 127 ms
20,028 KB
testcase_11 AC 213 ms
29,204 KB
testcase_12 AC 101 ms
17,508 KB
testcase_13 AC 70 ms
14,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 244 ms
31,100 KB
testcase_18 AC 110 ms
18,832 KB
testcase_19 AC 53 ms
12,968 KB
testcase_20 AC 174 ms
24,244 KB
testcase_21 AC 43 ms
12,288 KB
testcase_22 AC 222 ms
29,172 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 144 ms
21,900 KB
testcase_28 AC 135 ms
21,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
sys.setrecursionlimit(1000000)
import math
import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict
from collections import deque
#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    N,K,X = map(int,input().split()); INF = 1<<60
    A = list(map(int,input().split()))

    # dp[i][j]; i番目まで見てj=0前日会員ではない、1前日会員の時の最小値
    dp = [0,INF]
    for a in A:
        p = [INF,INF]
        p,dp = dp,p
        dp[0] = min(p[0] + a, p[1] + a)
        dp[1] = min(p[0] + K+X, p[1] + K)
    ans = min(dp)
    print(ans)


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