結果

問題 No.187 中華風 (Hard)
ユーザー r_dream0r_dream0
提出日時 2017-02-12 12:22:18
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 633 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-06-09 10:02:38
合計ジャッジ時間 10,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,032 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 135 ms
16,256 KB
testcase_03 AC 127 ms
16,384 KB
testcase_04 AC 757 ms
19,456 KB
testcase_05 AC 762 ms
19,328 KB
testcase_06 AC 756 ms
19,072 KB
testcase_07 AC 753 ms
19,200 KB
testcase_08 AC 813 ms
19,712 KB
testcase_09 AC 820 ms
19,712 KB
testcase_10 AC 827 ms
19,456 KB
testcase_11 AC 760 ms
19,584 KB
testcase_12 AC 764 ms
19,456 KB
testcase_13 AC 81 ms
12,032 KB
testcase_14 AC 81 ms
12,032 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 75 ms
12,160 KB
testcase_18 AC 77 ms
12,032 KB
testcase_19 AC 75 ms
11,904 KB
testcase_20 AC 552 ms
17,920 KB
testcase_21 AC 77 ms
11,776 KB
testcase_22 AC 753 ms
19,200 KB
testcase_23 AC 75 ms
12,160 KB
testcase_24 AC 81 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: assigned but unused variable - y
Main.rb:14: warning: assigned but unused variable - u2
Main.rb:30: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

def extgcd(a,b)
  return [1,0] if b == 0
  y,x = extgcd(b, a % b)
  y -= (a/b)*x
  return [x,y]
end

def mod_inverse(a, mod)
  x,y = extgcd(a, mod)
  return x % mod
end

def chinese_remainder(m1,m2,a,b)
  u1, u2 = extgcd(m1, m2)
  return nil if (a - b) % m1.gcd(m2) != 0
  l = (a - b) / (m1.gcd(m2))
  return (a - m1 * u1 * l) % (m1 * m2 / m1.gcd(m2))
end

n = gets.to_i
x = Array.new(n)
y = Array.new(n)
n.times do |i|
  x[i], y[i] = gets.split.map(&:to_i)
end
ans, mod = 0, 1
x.zip(y).each do |x,y|
  ans = chinese_remainder(mod, y, ans, x)
  unless ans
    puts -1
    exit
  end
  mod = mod * y / mod.gcd(y)
end
p ans % (10**9+7)
0