結果

問題 No.1035 Color Box
ユーザー simansiman
提出日時 2021-01-26 07:49:31
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 890 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-06-23 07:00:38
合計ジャッジ時間 5,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
15,616 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 94 ms
12,288 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 177 ms
15,616 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 82 ms
12,032 KB
testcase_12 WA -
testcase_13 AC 158 ms
14,464 KB
testcase_14 AC 169 ms
15,232 KB
testcase_15 AC 191 ms
15,360 KB
testcase_16 AC 84 ms
12,160 KB
testcase_17 AC 83 ms
12,032 KB
testcase_18 AC 84 ms
12,288 KB
testcase_19 AC 191 ms
15,488 KB
testcase_20 AC 85 ms
12,032 KB
testcase_21 AC 84 ms
12,288 KB
testcase_22 AC 83 ms
12,160 KB
testcase_23 AC 87 ms
12,160 KB
testcase_24 AC 85 ms
12,160 KB
testcase_25 AC 84 ms
12,032 KB
testcase_26 WA -
testcase_27 AC 88 ms
12,160 KB
testcase_28 AC 82 ms
12,288 KB
testcase_29 AC 85 ms
12,160 KB
testcase_30 WA -
testcase_31 AC 83 ms
12,160 KB
testcase_32 AC 85 ms
12,160 KB
testcase_33 AC 82 ms
12,288 KB
testcase_34 AC 81 ms
12,160 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 82 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class ModInteger
  attr_reader :fac, :inv, :finv, :mod

  MOD = 10 ** 9 + 7

  def initialize(n, mod: MOD)
    @mod = mod
    @fac = [1, 1]
    @inv = [1, 1]
    @finv = [1, 1]

    (2..n).each do |i|
      @fac[i] = fac[i - 1] * i % mod
      @inv[i] = mod - inv[mod % i] * (mod / i) % mod
      @finv[i] = finv[i - 1] * inv[i] % mod
    end
  end

  def combination(n, k)
    return 0 if n < k
    return 0 if n < 0 || k < 0

    fac[n] * (finv[k] * finv[n - k] % mod) % mod
  end

  def permutation(n, k = n)
    return 0 if n < k
    return 0 if n < 0 || k < 0

    fac[n] * (finv[n - k] % mod) % mod
  end

  def repeated_combination(n, k)
    combination(n + k - 1, k)
  end
end

N, M = gets.split.map(&:to_i)
MOD = 10 ** 9 + 7
ans = M.pow(N, MOD)
mi = ModInteger.new(M + 1)

1.upto(M - 1) do |x|
  ans += ((-1) ** x) * mi.combination(M, x) * x.pow(N, MOD)
  ans %= MOD
end

puts ans
0