結果

問題 No.187 中華風 (Hard)
ユーザー orisanoorisano
提出日時 2016-05-28 14:17:37
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 8,564 KB
最終ジャッジ日時 2024-10-07 17:27:25
合計ジャッジ時間 13,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
8,440 KB
testcase_01 AC 430 ms
8,440 KB
testcase_02 AC 118 ms
8,436 KB
testcase_03 AC 117 ms
8,440 KB
testcase_04 AC 849 ms
8,440 KB
testcase_05 AC 842 ms
8,440 KB
testcase_06 AC 830 ms
8,436 KB
testcase_07 AC 840 ms
8,436 KB
testcase_08 AC 916 ms
8,440 KB
testcase_09 AC 914 ms
8,440 KB
testcase_10 AC 919 ms
8,440 KB
testcase_11 AC 844 ms
8,312 KB
testcase_12 AC 849 ms
8,436 KB
testcase_13 AC 30 ms
8,308 KB
testcase_14 AC 30 ms
8,308 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 11 ms
6,816 KB
testcase_18 AC 299 ms
8,412 KB
testcase_19 AC 12 ms
6,816 KB
testcase_20 AC 588 ms
8,420 KB
testcase_21 AC 23 ms
8,172 KB
testcase_22 AC 845 ms
8,564 KB
testcase_23 AC 22 ms
8,048 KB
testcase_24 AC 22 ms
8,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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():
    N = int(raw_input())
    congs = [tuple([int(x) for x in raw_input().split(" ")]) for _ in range(N)]
    ans = gcrt(congs)[0]
    if any(ans % m != a for a, m in congs):
        print(-1)
    else:
        print(ans % (10**9 + 7))

if __name__ == "__main__":
    main()
0