結果
問題 | No.664 超能力者Aと株価予測 |
ユーザー | Wataoka Koki |
提出日時 | 2019-12-27 18:20:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 552 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-08 18:07:34 |
合計ジャッジ時間 | 3,825 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | AC | 29 ms
10,752 KB |
testcase_05 | AC | 27 ms
10,624 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 35 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
from math import floor N, M, K = map(int, input().split()) A = [] for _ in range(N+1): A.append(int(input())) # dp[i][j]: i分目まで終了してj回売買を済ませた場合の資金の最大値 dp = [[0 for _ in range(M+1)] for _ in range(N+1)] for i in range(N+1): dp[i][0] = K for i in range(1, N+1): for j in range(0, M+1): dp[i][j] = max( dp[i-1][j], max([floor(dp[k][j-1]/A[k])*A[i] + dp[k][j-1]%A[k] for k in range(i)]) ) ans = dp[-1][-1] if ans < K: print(K) else: print(ans)