結果

問題 No.1581 Multiple Sequence
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-01 19:37:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-06-11 09:12:27
合計ジャッジ時間 8,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 415 ms
77,184 KB
testcase_03 AC 458 ms
76,800 KB
testcase_04 AC 151 ms
76,288 KB
testcase_05 AC 481 ms
76,928 KB
testcase_06 AC 224 ms
76,800 KB
testcase_07 AC 146 ms
76,288 KB
testcase_08 AC 181 ms
76,544 KB
testcase_09 AC 432 ms
76,928 KB
testcase_10 AC 292 ms
76,672 KB
testcase_11 AC 103 ms
76,416 KB
testcase_12 AC 198 ms
76,544 KB
testcase_13 AC 59 ms
63,744 KB
testcase_14 AC 465 ms
76,672 KB
testcase_15 AC 334 ms
77,056 KB
testcase_16 AC 112 ms
76,416 KB
testcase_17 AC 515 ms
77,440 KB
testcase_18 AC 91 ms
74,880 KB
testcase_19 AC 405 ms
76,672 KB
testcase_20 AC 424 ms
76,800 KB
testcase_21 AC 459 ms
77,056 KB
testcase_22 AC 266 ms
77,056 KB
testcase_23 AC 524 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)
    return divisors

m = int(input())
mod = 10**9+7
dp = [0]*(m+1)
dp[0] = 1
for n in range(1, m+1):
    D = make_divisors(n)
    for i in D:
        dp[n] += dp[n//i-1]
        dp[n] %= mod
print(dp[m]%mod)
0