結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,160 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 150 ms
16,640 KB
testcase_03 AC 152 ms
16,512 KB
testcase_04 AC 874 ms
19,456 KB
testcase_05 AC 872 ms
19,456 KB
testcase_06 AC 874 ms
19,584 KB
testcase_07 AC 862 ms
19,456 KB
testcase_08 AC 954 ms
19,712 KB
testcase_09 AC 1,005 ms
19,712 KB
testcase_10 AC 952 ms
19,584 KB
testcase_11 AC 869 ms
19,584 KB
testcase_12 AC 867 ms
19,456 KB
testcase_13 AC 96 ms
12,288 KB
testcase_14 AC 93 ms
12,288 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 89 ms
12,160 KB
testcase_18 AC 94 ms
12,288 KB
testcase_19 AC 88 ms
12,160 KB
testcase_20 AC 626 ms
18,304 KB
testcase_21 AC 86 ms
12,160 KB
testcase_22 AC 859 ms
19,200 KB
testcase_23 AC 87 ms
12,032 KB
testcase_24 AC 88 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