結果

問題 No.187 中華風 (Hard)
ユーザー peroonperoon
提出日時 2020-12-22 15:07:41
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 513 ms / 3,000 ms
コード長 1,213 bytes
コンパイル時間 1,396 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 79,908 KB
最終ジャッジ日時 2024-09-21 14:12:10
合計ジャッジ時間 9,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
77,984 KB
testcase_01 AC 88 ms
77,728 KB
testcase_02 AC 186 ms
78,592 KB
testcase_03 AC 208 ms
78,984 KB
testcase_04 AC 474 ms
79,520 KB
testcase_05 AC 469 ms
79,368 KB
testcase_06 AC 480 ms
79,508 KB
testcase_07 AC 483 ms
79,528 KB
testcase_08 AC 513 ms
79,668 KB
testcase_09 AC 505 ms
79,556 KB
testcase_10 AC 507 ms
79,908 KB
testcase_11 AC 483 ms
79,276 KB
testcase_12 AC 478 ms
79,360 KB
testcase_13 AC 111 ms
78,332 KB
testcase_14 AC 116 ms
77,996 KB
testcase_15 AC 185 ms
78,760 KB
testcase_16 AC 175 ms
78,780 KB
testcase_17 AC 72 ms
75,532 KB
testcase_18 AC 83 ms
77,948 KB
testcase_19 AC 73 ms
75,436 KB
testcase_20 AC 375 ms
79,008 KB
testcase_21 AC 72 ms
75,288 KB
testcase_22 AC 484 ms
79,552 KB
testcase_23 AC 73 ms
75,556 KB
testcase_24 AC 73 ms
75,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# cf
# http://techtipshoge.blogspot.com/2015/02/blog-post_15.html

def gcd(a, b):
    if b == 0:
        return a
    return gcd(b, a%b)

# return [g, x, y]
# g = gcd(a, b)
# x, y satisfies a x + b y = g
def extgcd(a, b):
    if b == 0:
        return [a, 1, 0]
    g, x, y = extgcd(b, a%b)
    return [g, y, x - a/b * y]

# eq0: x = a0 (mod m0)
# eq1: x = a1 (mod m1)
# returns [xt, mod] such that x = xt + k mod for integer k.
def crt(eq0, eq1):
    a0, m0 = eq0
    a1, m1 = eq1

    g = gcd(m0, m1)

    if a0 % g != a1 % g:
        #raise Exception("x doesn't exist.")
        print(-1)
        sys.exit()

    if g > 1:
        m0 /= g
        m1 /= g

        while True:
            gt = gcd(m0, g)
            if gt == 1:
                break
            m0 *= gt
            g /= gt
        
        m1 *= g

        a0 %= m0
        a1 %= m1

    g, p, q = extgcd(m0, m1)
    
    x = a0 * q * m1 + a1 * p * m0
    mod = m0 * m1
    x = x % mod

    return [x, mod]

n = int(raw_input())
eqs = []
for _ in xrange(n):
    a, m = map(int, raw_input().split())
    eqs.append((a, m))

# solve the system
x, mod = reduce(crt, eqs, (0, 1))
if x==0:
    x += mod

MOD = 1000000007
print(x % MOD)
0