結果

問題 No.1581 Multiple Sequence
ユーザー FromBooskaFromBooska
提出日時 2023-10-11 12:55:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 1,291 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 76,896 KB
最終ジャッジ日時 2024-09-13 11:42:35
合計ジャッジ時間 8,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,080 KB
testcase_01 AC 39 ms
53,132 KB
testcase_02 AC 437 ms
76,464 KB
testcase_03 AC 480 ms
76,496 KB
testcase_04 AC 149 ms
76,120 KB
testcase_05 AC 505 ms
76,896 KB
testcase_06 AC 229 ms
75,924 KB
testcase_07 AC 141 ms
76,168 KB
testcase_08 AC 183 ms
76,252 KB
testcase_09 AC 453 ms
76,500 KB
testcase_10 AC 298 ms
76,376 KB
testcase_11 AC 94 ms
76,104 KB
testcase_12 AC 198 ms
76,104 KB
testcase_13 AC 53 ms
65,064 KB
testcase_14 AC 486 ms
76,372 KB
testcase_15 AC 346 ms
76,420 KB
testcase_16 AC 105 ms
75,988 KB
testcase_17 AC 537 ms
76,772 KB
testcase_18 AC 86 ms
75,828 KB
testcase_19 AC 424 ms
76,504 KB
testcase_20 AC 440 ms
76,496 KB
testcase_21 AC 481 ms
76,268 KB
testcase_22 AC 272 ms
76,336 KB
testcase_23 AC 556 ms
76,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1次元dp
# dp[i] 要素合計iで、要素すべてが1以上の整数で、すべてが倍数関係、のパターン数
# dp[1] = 1 for [1]
# dp[2] = 2 for [1, 1] and [2]
# dp[3] = 3 for [1, 1, 1], [1, 2], and [3]
# dp[4] = 5 for [1, 1, 1, 1], [1, 1, 2], [1, 3], [2, 2] and [4]
# dp[5] = 6 for [1, 1, 1, 1, 1], [1, 1, 1, 2], [1, 1, 3], [1, 2, 2], [1, 4], [5]
# 遷移が思いつかなかった
# 公式解説より、数列の第1項は常にiの約数であり、それをjとする
# jで始まる数列のすべての要素はjで割り切れ、jで割り切ると第1項は1となり、第2項以後の和はi//j-1となる
# そのパターン数はdp[i//j-1]

def divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

M = int(input())
mod = 10**9+7
dp = [0]*(max(10, M)+1)
dp[0] = 1 # ダミー、常にiが1つだけという数列がありうるから
dp[1] = 1
dp[2] = 2
dp[3] = 3
dp[4] = 5
dp[5] = 6
for i in range(6, M+1):
    divs = divisors(i)
    for j in divs:
        dp[i] += dp[i//j-1]
    dp[i] %= mod
#print(dp)
ans = dp[M]
print(ans)
0