結果

問題 No.1973 Divisor Sequence
ユーザー titan23titan23
提出日時 2022-06-24 09:13:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 809 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 296,928 KB
最終ジャッジ日時 2024-11-08 02:28:55
合計ジャッジ時間 11,418 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,888 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 542 ms
247,424 KB
testcase_03 AC 96 ms
80,512 KB
testcase_04 AC 348 ms
176,640 KB
testcase_05 AC 136 ms
98,432 KB
testcase_06 AC 361 ms
182,784 KB
testcase_07 AC 135 ms
94,336 KB
testcase_08 AC 236 ms
132,480 KB
testcase_09 AC 317 ms
163,584 KB
testcase_10 AC 384 ms
188,288 KB
testcase_11 AC 109 ms
83,712 KB
testcase_12 AC 312 ms
161,792 KB
testcase_13 AC 150 ms
101,888 KB
testcase_14 AC 298 ms
139,136 KB
testcase_15 AC 479 ms
225,280 KB
testcase_16 AC 465 ms
222,208 KB
testcase_17 AC 341 ms
169,472 KB
testcase_18 AC 98 ms
77,952 KB
testcase_19 AC 412 ms
199,168 KB
testcase_20 AC 129 ms
90,496 KB
testcase_21 AC 435 ms
207,104 KB
testcase_22 AC 400 ms
196,480 KB
testcase_23 TLE -
testcase_24 AC 1,298 ms
296,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
mod = 1000000007

from collections import Counter
def factorization(n: int) -> Counter:
  ret = Counter()
  tmp = n
  for i in range(2, int(-(-n**0.5//1))+1):
    if tmp % i == 0:
      cnt = 0
      while tmp % i == 0:
        cnt += 1
        tmp //= i
      ret[i] = cnt
  if tmp != 1:
    ret[tmp] = 1
  if ret == []:
    ret[n] = 1
  return ret

#  -----------------------  #

n, m = map(int, input().split())

div = factorization(m)

def dp(e):
  dp = [[0]*(e+1) for _ in range(n+1)]
  for i in range(e+1):
    dp[0][i] = 1
  for i in range(n):
    for j in range(e+1):
      for k in range(e-j+1):
        dp[i+1][j] += dp[i][k]
      dp[i+1][j] %= mod
  return dp[-1][0]

ans = 1
for p,e in div.items():
  ans *= dp(e)
  ans %= mod

print(ans)
0