結果

問題 No.664 超能力者Aと株価予測
ユーザー vwxyzvwxyz
提出日時 2022-04-08 01:56:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,527 ms / 4,000 ms
コード長 406 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-28 02:52:52
合計ジャッジ時間 6,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 49 ms
10,496 KB
testcase_07 AC 48 ms
10,752 KB
testcase_08 AC 390 ms
10,624 KB
testcase_09 AC 47 ms
10,624 KB
testcase_10 AC 817 ms
10,624 KB
testcase_11 AC 1,180 ms
10,752 KB
testcase_12 AC 1,527 ms
10,880 KB
testcase_13 AC 906 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,M,K=map(int,readline().split())
A=[int(readline()) for i in range(N+1)]
dp=[[0]*(M+1) for n in range(N+2)]
dp[0][0]=K
for n in range(1,N+2):
    for m in range(M+1):
        dp[n][m]=dp[n-1][m]
    for m in range(1,M+1):
        for nn in range(n):
            x,y=divmod(dp[nn][m-1],A[nn])
            dp[n][m]=max(dp[n][m],x*A[n-1]+y)
ans=max(dp[N+1])
print(ans)
0