結果

問題 No.1973 Divisor Sequence
ユーザー titiatitia
提出日時 2022-06-11 01:07:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2024-09-21 08:20:37
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,072 KB
testcase_01 AC 34 ms
52,816 KB
testcase_02 AC 159 ms
75,860 KB
testcase_03 AC 64 ms
75,924 KB
testcase_04 AC 122 ms
75,944 KB
testcase_05 AC 73 ms
76,320 KB
testcase_06 AC 129 ms
76,004 KB
testcase_07 AC 77 ms
75,832 KB
testcase_08 AC 101 ms
75,932 KB
testcase_09 AC 114 ms
76,408 KB
testcase_10 AC 135 ms
76,184 KB
testcase_11 AC 69 ms
76,060 KB
testcase_12 AC 115 ms
75,732 KB
testcase_13 AC 73 ms
76,236 KB
testcase_14 AC 117 ms
76,184 KB
testcase_15 AC 149 ms
76,076 KB
testcase_16 AC 155 ms
76,068 KB
testcase_17 AC 127 ms
76,084 KB
testcase_18 AC 74 ms
75,820 KB
testcase_19 AC 157 ms
75,960 KB
testcase_20 AC 79 ms
75,988 KB
testcase_21 AC 147 ms
75,880 KB
testcase_22 AC 140 ms
75,664 KB
testcase_23 AC 352 ms
75,728 KB
testcase_24 AC 370 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

mod=10**9+7

x=M

# 素因数分解
import math 
L=int(math.sqrt(x))

FACT=dict()

for i in range(2,L+2):
    while x%i==0:
        FACT[i]=FACT.get(i,0)+1
        x=x//i

if x!=1:
    FACT[x]=FACT.get(x,0)+1

def calc(LEN,N):
    DP=[1]*LEN
    
    for tests in range(N-1):
        NDP=[0]*LEN

        for j in range(LEN):
            NDP[LEN-1-j]+=DP[j]

        DP=[0]*LEN

        DP[-1]=NDP[-1]

        for j in range(LEN-2,-1,-1):
            DP[j]=DP[j+1]+NDP[j]
            DP[j]%=mod

    return sum(DP)%mod

ANS=1
for f in FACT.values():
    ANS*=calc(f+1,N)
    ANS%=mod

print(ANS)
0