結果

問題 No.1581 Multiple Sequence
ユーザー H3PO4H3PO4
提出日時 2023-03-01 08:49:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-09-16 08:47:00
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 144 ms
88,192 KB
testcase_03 AC 156 ms
88,960 KB
testcase_04 AC 66 ms
71,168 KB
testcase_05 AC 160 ms
89,088 KB
testcase_06 AC 102 ms
84,480 KB
testcase_07 AC 63 ms
70,656 KB
testcase_08 AC 72 ms
73,728 KB
testcase_09 AC 142 ms
88,448 KB
testcase_10 AC 113 ms
86,144 KB
testcase_11 AC 59 ms
66,048 KB
testcase_12 AC 90 ms
83,584 KB
testcase_13 AC 49 ms
61,440 KB
testcase_14 AC 162 ms
89,088 KB
testcase_15 AC 138 ms
86,912 KB
testcase_16 AC 57 ms
67,712 KB
testcase_17 AC 167 ms
89,856 KB
testcase_18 AC 53 ms
65,280 KB
testcase_19 AC 140 ms
88,064 KB
testcase_20 AC 145 ms
88,448 KB
testcase_21 AC 158 ms
88,704 KB
testcase_22 AC 109 ms
85,760 KB
testcase_23 AC 174 ms
89,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = int(input())
MOD = 10 ** 9 + 7

MAX = M
divisors = [[] for _ in range(MAX + 1)]
for i in range(1, MAX + 1):
    for j in range(i, MAX + 1, i):
        divisors[j].append(i)

dp = [0] * (M + 1)
dp[0] = 1
for i in range(1, M + 1):
    for div in divisors[i]:
        dp[i] += dp[div - 1]
    dp[i] %= MOD
print(dp[M])
0