結果

問題 No.1253 雀見椪
ユーザー simansiman
提出日時 2022-05-16 12:32:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-14 04:22:03
合計ジャッジ時間 6,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,032 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 92 ms
12,032 KB
testcase_03 AC 124 ms
12,416 KB
testcase_04 AC 462 ms
12,288 KB
testcase_05 AC 462 ms
12,288 KB
testcase_06 AC 463 ms
12,416 KB
testcase_07 AC 459 ms
12,288 KB
testcase_08 AC 465 ms
12,288 KB
testcase_09 AC 459 ms
12,288 KB
testcase_10 AC 462 ms
12,160 KB
testcase_11 AC 457 ms
12,288 KB
testcase_12 AC 462 ms
12,288 KB
testcase_13 AC 463 ms
12,288 KB
testcase_14 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:28: warning: assigned but unused variable - a
Syntax OK

ソースコード

diff #

class Integer
  def mod_inverse(mod)
    self.pow(mod - 2, mod)
  end
end

T = gets.to_i
MOD = 10 ** 9 + 7

def f(n, a, b)
  c = (a + b)

  a1 = a.numerator.pow(n, MOD)
  a2 = a.denominator.pow(n, MOD)

  b1 = b.numerator.pow(n, MOD)
  b2 = b.denominator.pow(n, MOD)

  c1 = c.numerator.pow(n, MOD)
  c2 = c.denominator.pow(n, MOD)

  c1 * c2.mod_inverse(MOD) - a1 * a2.mod_inverse(MOD) - b1 * b2.mod_inverse(MOD)
end

T.times do
  n, ag, bg, ac, bc, ap, bp = gets.split.map(&:to_i)

  a = 3.pow(n, MOD).mod_inverse(MOD)

  g_rate = Rational(ag, bg)
  c_rate = Rational(ac, bc)
  p_rate = Rational(ap, bp)

  r1 = f(n, g_rate, c_rate)
  r2 = f(n, g_rate, p_rate)
  r3 = f(n, c_rate, p_rate)

  puts (1 - r1 - r2 - r3) % MOD
end
0