結果

問題 No.1659 Product of Divisors
ユーザー とりゐとりゐ
提出日時 2021-10-15 04:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,668 KB
実行使用メモリ 57,388 KB
最終ジャッジ日時 2023-10-17 19:29:53
合計ジャッジ時間 3,077 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,644 KB
testcase_01 AC 40 ms
57,388 KB
testcase_02 AC 37 ms
53,432 KB
testcase_03 AC 37 ms
53,644 KB
testcase_04 AC 49 ms
57,388 KB
testcase_05 AC 46 ms
57,388 KB
testcase_06 AC 40 ms
57,388 KB
testcase_07 AC 41 ms
57,388 KB
testcase_08 AC 54 ms
57,388 KB
testcase_09 AC 53 ms
57,388 KB
testcase_10 AC 53 ms
57,388 KB
testcase_11 AC 53 ms
57,388 KB
testcase_12 AC 53 ms
57,388 KB
testcase_13 AC 37 ms
53,452 KB
testcase_14 AC 53 ms
57,388 KB
testcase_15 AC 40 ms
57,388 KB
testcase_16 AC 39 ms
57,388 KB
testcase_17 AC 40 ms
57,388 KB
testcase_18 AC 39 ms
57,388 KB
testcase_19 AC 40 ms
57,388 KB
testcase_20 AC 47 ms
57,388 KB
testcase_21 AC 50 ms
57,388 KB
testcase_22 AC 50 ms
57,388 KB
testcase_23 AC 52 ms
57,388 KB
testcase_24 AC 47 ms
57,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def comb(n,r):
  if r>n:
    return 0
  tmp1=1
  tmp2=1
  for i in range(r):
    tmp1*=n-i
    tmp2*=i+1
    tmp1%=mod
    tmp2%=mod
  return (tmp1*pow(tmp2,mod-2,mod)%mod)

def fact(n):
  #fact(18)=[[2, 1],[3, 2]] (18 = 2**1 * 3**2)
  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

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

if m==1:
  print(1)
  exit()
ans=1

for i,j in fact(m):
  ans*=comb(k+j,j)
  ans%=mod
print(ans)
0