結果

問題 No.1581 Multiple Sequence
ユーザー tamatotamato
提出日時 2021-07-02 22:14:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-06-29 11:52:30
合計ジャッジ時間 4,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 46 ms
52,224 KB
testcase_02 AC 220 ms
96,384 KB
testcase_03 AC 240 ms
98,176 KB
testcase_04 AC 95 ms
81,356 KB
testcase_05 AC 233 ms
98,816 KB
testcase_06 AC 118 ms
84,864 KB
testcase_07 AC 97 ms
81,152 KB
testcase_08 AC 109 ms
82,944 KB
testcase_09 AC 232 ms
97,024 KB
testcase_10 AC 150 ms
86,452 KB
testcase_11 AC 72 ms
70,912 KB
testcase_12 AC 116 ms
83,456 KB
testcase_13 AC 58 ms
63,872 KB
testcase_14 AC 237 ms
98,048 KB
testcase_15 AC 173 ms
91,776 KB
testcase_16 AC 75 ms
72,960 KB
testcase_17 AC 267 ms
99,840 KB
testcase_18 AC 66 ms
69,684 KB
testcase_19 AC 200 ms
95,488 KB
testcase_20 AC 216 ms
96,640 KB
testcase_21 AC 231 ms
98,184 KB
testcase_22 AC 139 ms
85,920 KB
testcase_23 AC 278 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    M = int(input())
    div = [[] for _ in range(M+1)]
    for i in range(1, M+1):
        for j in range(2, M+1):
            if i*j > M:
                break
            div[i*j].append(i)

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


if __name__ == '__main__':
    main()
0