結果

問題 No.1973 Divisor Sequence
ユーザー TKG1TKG1
提出日時 2022-06-11 00:29:26
言語 Crystal
(1.11.2)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 14,366 ms
コンパイル使用メモリ 296,396 KB
実行使用メモリ 204,420 KB
最終ジャッジ日時 2024-09-21 07:39:59
合計ジャッジ時間 17,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 181 ms
61,060 KB
testcase_03 AC 13 ms
7,936 KB
testcase_04 AC 90 ms
28,264 KB
testcase_05 AC 40 ms
22,288 KB
testcase_06 AC 104 ms
37,960 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 57 ms
22,244 KB
testcase_09 AC 83 ms
25,120 KB
testcase_10 AC 107 ms
30,288 KB
testcase_11 AC 18 ms
7,936 KB
testcase_12 AC 86 ms
31,344 KB
testcase_13 AC 29 ms
12,776 KB
testcase_14 AC 72 ms
24,444 KB
testcase_15 AC 129 ms
32,800 KB
testcase_16 AC 134 ms
38,860 KB
testcase_17 AC 83 ms
26,080 KB
testcase_18 AC 8 ms
6,940 KB
testcase_19 AC 109 ms
32,904 KB
testcase_20 AC 23 ms
9,088 KB
testcase_21 AC 146 ms
61,464 KB
testcase_22 AC 107 ms
33,080 KB
testcase_23 AC 416 ms
204,420 KB
testcase_24 AC 355 ms
61,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

alias LL = Int64
macro chmin(x, y); {{x}} = {{y}} if {{x}} > {{y}}; end
macro chmax(x, y); {{x}} = {{y}} if {{x}} < {{y}}; end
macro yn(x); {{x}} ? "Yes" : "No"; end

# 素因数分解
def factorization(n : Int64)
  res = [] of Array(Int64)
  i = 2i64
  while i * i <= n
    if n % i == 0
      cnt = 0i64
      while n % i == 0
        n //= i
        cnt += 1
      end
      res << [i, cnt]
    end
    i += 1
  end
  res << [n, 1i64] if n != 1
  return res
end

# ---------------------------------------------------- :)

n, m = read_line.split.map(&.to_i64)
mod = 10**9+7
pr = factorization(m)
ans = 1i64

pr.size.times do |i|
  e = pr[i][-1]
  dp = Array.new(n+1){Array.new(e+1, 0i64)}
  0.upto(e) do |i|
    dp[0][i] = 1
  end

  0.upto(n-1) do |j|
    s = 0i64
    e.downto(0) do |k|
      s += dp[j][e-k]
      s %= mod
      dp[j+1][k] = s
    end
  end

  ans = (ans * dp[n-1].sum(&.% mod)) % mod
end

puts ans
0