結果

問題 No.1973 Divisor Sequence
ユーザー tamatotamato
提出日時 2022-06-10 21:39:59
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,050 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 76,128 KB
最終ジャッジ日時 2024-09-21 07:27:48
合計ジャッジ時間 6,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,016 KB
testcase_01 AC 41 ms
51,812 KB
testcase_02 AC 173 ms
75,668 KB
testcase_03 AC 59 ms
75,884 KB
testcase_04 AC 124 ms
75,800 KB
testcase_05 AC 76 ms
75,904 KB
testcase_06 AC 128 ms
75,940 KB
testcase_07 AC 73 ms
75,580 KB
testcase_08 AC 100 ms
75,716 KB
testcase_09 AC 121 ms
75,648 KB
testcase_10 AC 144 ms
75,988 KB
testcase_11 AC 67 ms
76,044 KB
testcase_12 AC 121 ms
75,588 KB
testcase_13 AC 75 ms
75,796 KB
testcase_14 AC 149 ms
76,016 KB
testcase_15 AC 154 ms
76,128 KB
testcase_16 AC 151 ms
75,796 KB
testcase_17 AC 128 ms
76,016 KB
testcase_18 AC 72 ms
75,712 KB
testcase_19 AC 169 ms
75,868 KB
testcase_20 AC 74 ms
75,980 KB
testcase_21 AC 153 ms
75,888 KB
testcase_22 AC 140 ms
75,836 KB
testcase_23 TLE -
testcase_24 AC 437 ms
75,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007


def main():
    import sys
    input = sys.stdin.readline

    def PrimeDecomposition(N):
        ret = {}
        n = int(N ** 0.5)
        for d in range(2, n + 1):
            while N % d == 0:
                if d not in ret:
                    ret[d] = 1
                else:
                    ret[d] += 1
                N //= d
            if N == 1:
                break
        if N != 1:
            ret[N] = 1
        return ret

    N, M = map(int, input().split())
    P = PrimeDecomposition(M)
    ans = 1
    for p in P:
        K = P[p]
        dp = [0] * (K+1)
        dp[0] = 1
        for _ in range(N):
            dp_new = [0] * (K+1)
            for k in range(K+1):
                for k2 in range(K+1):
                    if k + k2 > K:
                        break
                    dp_new[k2] = (dp_new[k2] + dp[k]) % mod
            dp = dp_new
        S = 0
        for d in dp:
            S = (S + d)%mod
        ans = (ans * S)%mod
    print(ans)
    

if __name__ == '__main__':
    main()
0