結果

問題 No.664 超能力者Aと株価予測
ユーザー htkbhtkb
提出日時 2019-04-01 20:55:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 337 ms / 4,000 ms
コード長 533 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-04 19:07:21
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 35 ms
10,752 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 98 ms
10,880 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 199 ms
10,752 KB
testcase_11 AC 337 ms
10,752 KB
testcase_12 AC 337 ms
10,752 KB
testcase_13 AC 218 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import accumulate
N, M, K = map(int, input().split())
stock_price = list(map(int, sys.stdin))
dp = [K]*len(stock_price)

for _ in [0]*M:
    for t1, price1 in zip(range(N, -1, -1), stock_price[N::-1]):
        stock_count, rem = dp[t1] // price1, dp[t1] % price1
        for t2, price2 in enumerate(stock_price[t1+1:], start=t1+1):
            if price1 < price2 and dp[t2] < stock_count * price2 + rem:
                dp[t2] = stock_count * price2 + rem

    dp = list(accumulate(dp, max))

print(max(dp))
0