結果

問題 No.664 超能力者Aと株価予測
ユーザー convexineqconvexineq
提出日時 2021-03-03 18:01:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 4,000 ms
コード長 359 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 64,716 KB
最終ジャッジ日時 2024-10-03 07:01:16
合計ジャッジ時間 1,617 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 32 ms
52,140 KB
testcase_02 AC 33 ms
52,216 KB
testcase_03 AC 31 ms
53,372 KB
testcase_04 AC 33 ms
53,696 KB
testcase_05 AC 32 ms
53,828 KB
testcase_06 AC 41 ms
61,560 KB
testcase_07 AC 41 ms
61,512 KB
testcase_08 AC 49 ms
63,284 KB
testcase_09 AC 38 ms
60,208 KB
testcase_10 AC 57 ms
64,100 KB
testcase_11 AC 76 ms
63,960 KB
testcase_12 AC 71 ms
64,716 KB
testcase_13 AC 59 ms
64,248 KB
testcase_14 AC 32 ms
52,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k,*a = map(int,open(0).read().split())
n += 1
dp = [[-1]*(m+1)]
dp[0][0] = k
for i in range(n):
    ndp = dp[-1][:]
    for j in range(1,m+1)[::-1]:
        if ndp[j-1] == -1: continue
        for l in range(i):
            if a[i] > a[l]:
                ndp[j] = max(ndp[j], dp[l][j-1]%a[l] + dp[l][j-1]//a[l]*a[i])
    dp.append(ndp)
print(max(dp[-1]))
0