結果

問題 No.1581 Multiple Sequence
ユーザー convexineqconvexineq
提出日時 2021-07-03 05:25:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-06-29 23:41:04
合計ジャッジ時間 4,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 183 ms
88,576 KB
testcase_03 AC 181 ms
89,344 KB
testcase_04 AC 76 ms
71,552 KB
testcase_05 AC 202 ms
89,472 KB
testcase_06 AC 108 ms
84,608 KB
testcase_07 AC 76 ms
71,168 KB
testcase_08 AC 87 ms
74,240 KB
testcase_09 AC 191 ms
88,704 KB
testcase_10 AC 135 ms
86,400 KB
testcase_11 AC 61 ms
66,304 KB
testcase_12 AC 106 ms
83,584 KB
testcase_13 AC 53 ms
61,696 KB
testcase_14 AC 188 ms
89,344 KB
testcase_15 AC 149 ms
87,168 KB
testcase_16 AC 64 ms
67,584 KB
testcase_17 AC 201 ms
89,984 KB
testcase_18 AC 57 ms
65,408 KB
testcase_19 AC 166 ms
88,320 KB
testcase_20 AC 181 ms
88,576 KB
testcase_21 AC 177 ms
89,088 KB
testcase_22 AC 123 ms
85,888 KB
testcase_23 AC 221 ms
90,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
m = int(input())
yaku = [[] for _ in range(m+1)]
for i in range(1,m+1):
    for j in range(i,m+1,i):
        yaku[j].append(i)
dp = [0]*(m+1)
dp[0] = 1
for i in range(1,m+1):
    for j in yaku[i]:
        dp[i] += dp[(i-j)//j]
    dp[i] %= MOD
print(dp[m])
0