結果

問題 No.31 悪のミックスジュース
ユーザー vwxyzvwxyz
提出日時 2024-02-27 08:45:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-29 11:55:39
合計ジャッジ時間 8,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 561 ms
11,264 KB
testcase_02 AC 561 ms
11,264 KB
testcase_03 AC 805 ms
11,392 KB
testcase_04 AC 784 ms
11,264 KB
testcase_05 AC 790 ms
11,392 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 809 ms
11,392 KB
testcase_08 AC 758 ms
11,264 KB
testcase_09 WA -
testcase_10 AC 631 ms
11,264 KB
testcase_11 AC 38 ms
10,752 KB
testcase_12 AC 291 ms
11,008 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 733 ms
11,264 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 55 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V=map(int,input().split())
C=[0]+list(map(int,input().split()))
for v in range(1,N+1):
    C[v]+=C[v-1]
V=max(V,N)
S=N*N
inf=1<<60
dp=[inf]*(S+1)
dp[N]=C[N]
for v in range(1,N):
    c=C[v]
    for s in range(v,S+1):
        dp[s]=min(dp[s],dp[s-v]+c)
ans=inf
for s in range(S+1):
    for v in range(1,N+1):
        c=C[v]
        if s<=V and (V-s)%v==0:
            ans=min(ans,dp[s]+(V-s)//v*c)
print(ans)
0