結果

問題 No.1581 Multiple Sequence
ユーザー FromBooskaFromBooska
提出日時 2023-06-19 14:37:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 1,154 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 76,900 KB
最終ジャッジ日時 2024-06-27 02:58:18
合計ジャッジ時間 8,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,088 KB
testcase_01 AC 36 ms
53,540 KB
testcase_02 AC 433 ms
76,332 KB
testcase_03 AC 477 ms
76,608 KB
testcase_04 AC 144 ms
75,800 KB
testcase_05 AC 500 ms
76,744 KB
testcase_06 AC 232 ms
75,984 KB
testcase_07 AC 144 ms
76,312 KB
testcase_08 AC 179 ms
75,876 KB
testcase_09 AC 458 ms
76,484 KB
testcase_10 AC 302 ms
76,220 KB
testcase_11 AC 97 ms
75,860 KB
testcase_12 AC 195 ms
76,316 KB
testcase_13 AC 50 ms
64,512 KB
testcase_14 AC 488 ms
76,900 KB
testcase_15 AC 343 ms
76,508 KB
testcase_16 AC 102 ms
76,076 KB
testcase_17 AC 541 ms
76,572 KB
testcase_18 AC 84 ms
76,100 KB
testcase_19 AC 414 ms
76,324 KB
testcase_20 AC 436 ms
76,420 KB
testcase_21 AC 472 ms
76,592 KB
testcase_22 AC 273 ms
76,120 KB
testcase_23 AC 550 ms
76,592 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で割ると、第1項は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]*(M+1)
dp[0] = 1 #便宜的に1とする

for i in range(1, M+1):
    divs = divisors(i)
    for d in divs:
        dp[i] += dp[i//d-1]
    dp[i] %= mod

#print(dp)

ans = dp[M]%mod
print(ans)
0