結果

問題 No.1973 Divisor Sequence
ユーザー ntudantuda
提出日時 2022-07-03 16:01:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,520 KB
最終ジャッジ日時 2024-05-06 23:04:50
合計ジャッジ時間 2,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 70 ms
75,904 KB
testcase_03 AC 51 ms
66,432 KB
testcase_04 AC 64 ms
76,032 KB
testcase_05 AC 69 ms
76,096 KB
testcase_06 AC 64 ms
75,776 KB
testcase_07 AC 50 ms
69,504 KB
testcase_08 AC 58 ms
76,032 KB
testcase_09 AC 61 ms
75,776 KB
testcase_10 AC 80 ms
76,324 KB
testcase_11 AC 48 ms
66,176 KB
testcase_12 AC 64 ms
76,108 KB
testcase_13 AC 62 ms
76,160 KB
testcase_14 AC 86 ms
75,904 KB
testcase_15 AC 62 ms
76,032 KB
testcase_16 AC 65 ms
75,904 KB
testcase_17 AC 75 ms
76,032 KB
testcase_18 AC 58 ms
72,448 KB
testcase_19 AC 87 ms
76,288 KB
testcase_20 AC 48 ms
68,096 KB
testcase_21 AC 70 ms
76,032 KB
testcase_22 AC 66 ms
75,776 KB
testcase_23 AC 358 ms
75,904 KB
testcase_24 AC 156 ms
76,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
MOD = 10 ** 9 + 7

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

def n_fact(N):
    c = Counter(prime_factorize(N))
    return c

N, M = map(int, input().split())
X = n_fact(M)
x2 = Counter(X.values())

ans = 1
for k, v in x2.items():
    dp = [1] * (k + 1)
    for i in range(N-1):
        dp2 = [0] * (k+1)
        sump = 0
        for j in range(k+1):
            sump += dp[j]
            dp2[k-j] = sump % MOD
        dp = dp2
    ans *= pow(sum(dp),v,MOD)
    ans %= MOD

print(ans)

0