結果

問題 No.1973 Divisor Sequence
ユーザー H20H20
提出日時 2022-06-10 22:02:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2024-09-21 07:29:48
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,236 KB
testcase_01 AC 42 ms
53,912 KB
testcase_02 AC 79 ms
75,920 KB
testcase_03 AC 52 ms
68,824 KB
testcase_04 AC 70 ms
76,092 KB
testcase_05 AC 73 ms
76,224 KB
testcase_06 AC 72 ms
76,060 KB
testcase_07 AC 56 ms
72,952 KB
testcase_08 AC 66 ms
76,532 KB
testcase_09 AC 66 ms
76,012 KB
testcase_10 AC 91 ms
76,032 KB
testcase_11 AC 51 ms
68,628 KB
testcase_12 AC 69 ms
75,924 KB
testcase_13 AC 69 ms
76,224 KB
testcase_14 AC 90 ms
76,428 KB
testcase_15 AC 68 ms
76,036 KB
testcase_16 AC 72 ms
76,152 KB
testcase_17 AC 87 ms
76,220 KB
testcase_18 AC 61 ms
73,932 KB
testcase_19 AC 96 ms
76,340 KB
testcase_20 AC 53 ms
70,840 KB
testcase_21 AC 77 ms
76,128 KB
testcase_22 AC 70 ms
76,528 KB
testcase_23 AC 234 ms
75,896 KB
testcase_24 AC 200 ms
75,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

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


N,M = map(int, input().split())
ans = 1
mod = 10**9+7
CA = collections.Counter(prime_factorize(M))
CACA = collections.Counter()
for k,v in CA.items():
    CACA[v]+=1
for k,v in CACA.items():
    DP = [1]*(k+1)
    for i in range(N-1):
        ACDP = list(DP)
        for j in range(1,k+1):
            ACDP[j]=(ACDP[j]+ACDP[j-1])%mod
        DP = ACDP[::-1]

    ans = pow(sum(DP),v,mod)*ans%mod

print(ans%mod)
0