結果

問題 No.1973 Divisor Sequence
ユーザー EguyEguy
提出日時 2022-06-11 00:13:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 1,161 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 76,608 KB
最終ジャッジ日時 2024-09-21 07:32:53
合計ジャッジ時間 6,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,200 KB
testcase_01 AC 38 ms
52,892 KB
testcase_02 AC 321 ms
76,328 KB
testcase_03 AC 77 ms
76,296 KB
testcase_04 AC 215 ms
76,064 KB
testcase_05 AC 112 ms
76,032 KB
testcase_06 AC 236 ms
76,316 KB
testcase_07 AC 94 ms
76,276 KB
testcase_08 AC 156 ms
76,268 KB
testcase_09 AC 196 ms
76,508 KB
testcase_10 AC 215 ms
76,036 KB
testcase_11 AC 80 ms
76,304 KB
testcase_12 AC 197 ms
76,608 KB
testcase_13 AC 103 ms
75,916 KB
testcase_14 AC 150 ms
76,204 KB
testcase_15 AC 261 ms
76,256 KB
testcase_16 AC 276 ms
75,928 KB
testcase_17 AC 186 ms
76,264 KB
testcase_18 AC 70 ms
76,292 KB
testcase_19 AC 233 ms
76,396 KB
testcase_20 AC 89 ms
76,448 KB
testcase_21 AC 276 ms
76,120 KB
testcase_22 AC 246 ms
76,264 KB
testcase_23 AC 671 ms
76,012 KB
testcase_24 AC 561 ms
76,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
mod = 1000000007
#mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))

def factorization(x):
    lst = []
    if x == 1:
        return lst
    
    # 何度も回す場合、範囲を素数のみにするといいかも
    for n in range(2, x + 1):
        if n * n > x or x == 1:
            break
        count = 0
        while x % n == 0:
            x //= n
            count += 1
        if count:
            lst.append((n, count))

    if x > 1:
        lst.append((x, 1))

    return lst
N, M = li()
fac = factorization(M)
X = len(fac)
Y = 0
dp = []
for i in range(X):
    k, v = fac[i]
    Y = max(Y, v+1)

dp = [[1] * Y for _ in range(X)]
for _ in range(N-1):
    ndp = [[0] * Y for _ in range(X)]
    for i in range(X):
        _, v = fac[i]
        tmp = 0
        for e, j in enumerate(reversed(range(v+1))):
            tmp += dp[i][e]
            tmp %= mod
            ndp[i][j] += tmp
            ndp[i][j] %= mod
    dp = ndp

ans = 1
for i in range(X):
    tmp = sum(dp[i]) % mod
    ans *= tmp
    ans %= mod

print(ans)
0