結果
問題 | No.187 中華風 (Hard) |
ユーザー | orisano |
提出日時 | 2016-05-28 14:39:54 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,051 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 90,756 KB |
最終ジャッジ日時 | 2024-10-07 17:30:00 |
合計ジャッジ時間 | 4,676 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 46 ms
55,172 KB |
testcase_18 | RE | - |
testcase_19 | AC | 44 ms
55,204 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
from functools import * def egcd(a, b): x, y, u, v = 0, 1, 1, 0 while a != 0: q, r = b // a, b % a m, n = x - u * q, y - v * q b, a, x, y, u, v = a, r, u, v, m, n gcd = b return gcd, x, y def lcm(a, b): from fractions import gcd return a // gcd(a, b) * b def gcrt(congs): def fn(cong, prod): a, n = cong m = prod // n g, x, _ = egcd(m, n) return m // g * x * a def crt(a, b): N = a[1] * b[1] L = lcm(a[1], b[1]) return (fn(a, N) + fn(b, N)) % L, L return reduce(crt, congs) def main(): if hasattr(__builtins__,"raw_input"): __builtins__.input = raw_input if hasattr(__builtins__,"xrange"): __builtins__.range = xrange N = int(input()) congs = [tuple([int(x) for x in input().split(" ")]) for _ in range(N)] ans, mod = gcrt(congs) if ans == 0: ans = mod if any(ans % m != a for a, m in congs): print(-1) else: print(ans % (10**9 + 7)) if __name__ == "__main__": main()