結果

問題 No.1973 Divisor Sequence
ユーザー ntudantuda
提出日時 2022-07-03 15:34:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 755 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 304,384 KB
最終ジャッジ日時 2024-11-29 08:52:29
合計ジャッジ時間 32,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,752 KB
testcase_01 AC 45 ms
188,288 KB
testcase_02 TLE -
testcase_03 AC 88 ms
304,384 KB
testcase_04 AC 768 ms
88,576 KB
testcase_05 AC 593 ms
186,112 KB
testcase_06 AC 1,480 ms
102,272 KB
testcase_07 AC 120 ms
185,984 KB
testcase_08 AC 461 ms
84,608 KB
testcase_09 AC 595 ms
81,408 KB
testcase_10 TLE -
testcase_11 AC 81 ms
76,416 KB
testcase_12 AC 948 ms
87,424 KB
testcase_13 AC 415 ms
79,104 KB
testcase_14 TLE -
testcase_15 AC 1,057 ms
88,832 KB
testcase_16 AC 1,557 ms
99,584 KB
testcase_17 TLE -
testcase_18 AC 109 ms
76,544 KB
testcase_19 TLE -
testcase_20 AC 102 ms
75,904 KB
testcase_21 TLE -
testcase_22 AC 1,058 ms
88,960 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
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 = collections.Counter(prime_factorize(N))
    return c

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

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

print(ans)

0