結果

問題 No.1581 Multiple Sequence
ユーザー 👑 rin204rin204
提出日時 2022-02-24 01:24:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,287 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 226,016 KB
最終ジャッジ日時 2024-07-02 01:26:08
合計ジャッジ時間 17,914 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,820 KB
testcase_01 AC 39 ms
52,156 KB
testcase_02 AC 1,051 ms
200,728 KB
testcase_03 AC 1,136 ms
211,808 KB
testcase_04 AC 373 ms
121,656 KB
testcase_05 AC 1,221 ms
219,152 KB
testcase_06 AC 587 ms
148,412 KB
testcase_07 AC 357 ms
120,576 KB
testcase_08 AC 456 ms
131,276 KB
testcase_09 AC 1,083 ms
204,552 KB
testcase_10 AC 744 ms
166,664 KB
testcase_11 AC 214 ms
98,436 KB
testcase_12 AC 492 ms
136,940 KB
testcase_13 AC 81 ms
78,820 KB
testcase_14 AC 1,140 ms
212,424 KB
testcase_15 AC 850 ms
180,484 KB
testcase_16 AC 247 ms
103,424 KB
testcase_17 AC 1,259 ms
223,340 KB
testcase_18 AC 188 ms
97,296 KB
testcase_19 AC 1,018 ms
197,184 KB
testcase_20 AC 1,057 ms
202,372 KB
testcase_21 AC 1,139 ms
211,596 KB
testcase_22 AC 683 ms
159,908 KB
testcase_23 AC 1,287 ms
226,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
MOD = 10 ** 9 + 7

memo = {}
def dfs(m):
    if m == 0:
        return 1
    if m in memo:
        return memo[m]
        
    ret = 0
    for i in range(1, int(m ** 0.5 + 1)):
        if m % i == 0:
            ret += dfs(m // i - 1)
            if i != m // i:
                ret += dfs(i - 1)
            ret %= MOD
    memo[m] = ret
    return ret
    
m = int(input())        
print(dfs(m))
0