結果

問題 No.187 中華風 (Hard)
ユーザー r_dream0r_dream0
提出日時 2017-02-12 12:27:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 912 ms / 3,000 ms
コード長 660 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-09 10:03:23
合計ジャッジ時間 11,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 89 ms
11,904 KB
testcase_02 AC 147 ms
16,512 KB
testcase_03 AC 150 ms
16,384 KB
testcase_04 AC 830 ms
19,200 KB
testcase_05 AC 831 ms
19,456 KB
testcase_06 AC 870 ms
19,200 KB
testcase_07 AC 844 ms
19,072 KB
testcase_08 AC 912 ms
19,584 KB
testcase_09 AC 901 ms
19,584 KB
testcase_10 AC 900 ms
19,456 KB
testcase_11 AC 830 ms
19,456 KB
testcase_12 AC 833 ms
19,328 KB
testcase_13 AC 90 ms
11,904 KB
testcase_14 AC 91 ms
12,160 KB
testcase_15 AC 137 ms
16,256 KB
testcase_16 AC 141 ms
16,128 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 92 ms
12,032 KB
testcase_19 AC 89 ms
12,160 KB
testcase_20 AC 582 ms
18,304 KB
testcase_21 AC 85 ms
12,160 KB
testcase_22 AC 824 ms
19,072 KB
testcase_23 AC 83 ms
12,032 KB
testcase_24 AC 87 ms
12,160 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
ans += mod if ans == 0
puts ans % 1000000007
0