結果

問題 No.1973 Divisor Sequence
ユーザー とりゐとりゐ
提出日時 2022-06-10 22:10:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 76,468 KB
最終ジャッジ日時 2024-09-21 07:30:17
合計ジャッジ時間 6,344 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,152 KB
testcase_01 AC 42 ms
52,388 KB
testcase_02 AC 337 ms
76,432 KB
testcase_03 AC 78 ms
76,204 KB
testcase_04 AC 234 ms
76,016 KB
testcase_05 AC 98 ms
76,176 KB
testcase_06 AC 226 ms
76,308 KB
testcase_07 AC 98 ms
76,292 KB
testcase_08 AC 163 ms
76,136 KB
testcase_09 AC 201 ms
76,184 KB
testcase_10 AC 241 ms
76,052 KB
testcase_11 AC 88 ms
75,816 KB
testcase_12 AC 200 ms
75,988 KB
testcase_13 AC 103 ms
76,344 KB
testcase_14 AC 187 ms
76,384 KB
testcase_15 AC 303 ms
75,884 KB
testcase_16 AC 298 ms
76,468 KB
testcase_17 AC 220 ms
76,188 KB
testcase_18 AC 82 ms
76,380 KB
testcase_19 AC 272 ms
76,252 KB
testcase_20 AC 103 ms
76,128 KB
testcase_21 AC 284 ms
76,336 KB
testcase_22 AC 259 ms
76,120 KB
testcase_23 AC 504 ms
76,084 KB
testcase_24 AC 671 ms
76,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def fact(n):
  arr = []
  temp = n
  for i in range(2, int(-(-n**0.5//1))+1):
    if temp%i==0:
      cnt=0
      while temp%i==0:
        cnt+=1
        temp //= i
      arr.append([i, cnt])
  if temp!=1:
    arr.append([temp, 1])
  if arr==[]:
    arr.append([n, 1])
  return arr

def calc(n,k):
  dp=[0]*(k+1)
  dp[0]=1
  for _ in range(n):
    dp_n=[0]*(k+1)
    cum=0
    for i in range(k+1):
      cum+=dp[i]
      dp_n[k-i]=cum
    dp=[i%mod for i in dp_n]
  return sum(dp)%mod 

mod=10**9+7
n,m=map(int,input().split())
ans=1
if m==1:
  print(1)
  exit()

f=fact(m)

for _,k in f:
  ans*=calc(n,k)
  ans%=mod

print(ans)
0