結果
問題 | No.1973 Divisor Sequence |
ユーザー | 👑 Kazun |
提出日時 | 2022-06-10 21:39:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,002 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 81,972 KB |
実行使用メモリ | 119,156 KB |
最終ジャッジ日時 | 2024-09-21 06:05:01 |
合計ジャッジ時間 | 3,719 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
60,272 KB |
testcase_01 | AC | 37 ms
52,824 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#素因数分解 def Prime_Factorization(N): if N==0: return [[0,1]] if N<0: R=[[-1,1]] else: R=[] N=abs(N) if N&1==0: C=0 while N&1==0: N>>=1 C+=1 R.append([2,C]) if N%3==0: C=0 while N%3==0: N//=3 C+=1 R.append([3,C]) k=5 Flag=0 while k*k<=N: if N%k==0: C=0 while N%k==0: C+=1 N//=k R.append([k,C]) k+=2+2*Flag Flag^=1 if N!=1: R.append([N,1]) return R #================================================== N,M=map(int,input().split()) F=Prime_Factorization(M) X=1 Mod=10**9+7 D={} for p,e in F: if e not in D: DP=[0]*(e+1); DP[0]=1 for n in range(1,N+1): for i in range(1,e+1): DP[i]+=DP[i-1] DP.reverse() DP[e]=sum(DP)%Mod X*=DP[e] X%=Mod print(X)