結果

問題 No.1973 Divisor Sequence
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-06-10 22:54:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,440 KB
最終ジャッジ日時 2024-09-21 07:31:10
合計ジャッジ時間 4,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
58,632 KB
testcase_01 AC 55 ms
58,640 KB
testcase_02 AC 155 ms
76,032 KB
testcase_03 AC 75 ms
76,168 KB
testcase_04 AC 120 ms
76,440 KB
testcase_05 AC 76 ms
75,496 KB
testcase_06 AC 125 ms
75,840 KB
testcase_07 AC 81 ms
75,880 KB
testcase_08 AC 98 ms
75,876 KB
testcase_09 AC 113 ms
75,820 KB
testcase_10 AC 129 ms
75,832 KB
testcase_11 AC 78 ms
75,812 KB
testcase_12 AC 113 ms
75,964 KB
testcase_13 AC 86 ms
75,952 KB
testcase_14 AC 114 ms
75,980 KB
testcase_15 AC 142 ms
75,820 KB
testcase_16 AC 139 ms
75,888 KB
testcase_17 AC 120 ms
75,844 KB
testcase_18 AC 77 ms
75,876 KB
testcase_19 AC 141 ms
76,044 KB
testcase_20 AC 81 ms
76,100 KB
testcase_21 AC 133 ms
75,936 KB
testcase_22 AC 129 ms
76,192 KB
testcase_23 AC 298 ms
75,920 KB
testcase_24 AC 308 ms
75,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
mod = 10**9+7


def calc(x):
    dp = [1]*(x+1)
    for i in range(n):
        ndp = [0]*(x+1)
        for j in range(x+1):
            ndp[j] = dp[x-j]
        for j in range(x):
            ndp[j+1] += ndp[j]
            ndp[j+1] %= mod
        dp = ndp
    return dp[-1]

ans = 1
for i in range(2,10**6+5):
    if m%i:
        continue
    c = 0
    while m%i == 0:
        m //= i
        c += 1
    ans *= calc(c)
    ans %= mod
if m > 1:
    ans *= calc(1)
    ans %= mod
print(ans)
0