結果

問題 No.187 中華風 (Hard)
ユーザー okayu29okayu29
提出日時 2023-01-18 09:25:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 3,000 ms
コード長 793 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-11 12:27:05
合計ジャッジ時間 6,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,568 KB
testcase_01 AC 51 ms
61,696 KB
testcase_02 AC 106 ms
75,392 KB
testcase_03 AC 110 ms
76,032 KB
testcase_04 AC 383 ms
76,928 KB
testcase_05 AC 385 ms
76,672 KB
testcase_06 AC 377 ms
76,848 KB
testcase_07 AC 412 ms
76,628 KB
testcase_08 AC 442 ms
77,824 KB
testcase_09 AC 432 ms
77,336 KB
testcase_10 AC 430 ms
77,472 KB
testcase_11 AC 401 ms
76,920 KB
testcase_12 AC 406 ms
77,240 KB
testcase_13 AC 54 ms
63,616 KB
testcase_14 AC 52 ms
64,256 KB
testcase_15 AC 104 ms
76,436 KB
testcase_16 AC 94 ms
76,160 KB
testcase_17 AC 34 ms
52,480 KB
testcase_18 AC 46 ms
61,184 KB
testcase_19 AC 35 ms
52,480 KB
testcase_20 AC 300 ms
76,288 KB
testcase_21 AC 36 ms
52,480 KB
testcase_22 AC 390 ms
77,440 KB
testcase_23 AC 34 ms
52,608 KB
testcase_24 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def extgcd(a, b, x1=1, y1=0, x2=0, y2=1):
    if b == 0:
        return a, x1, y1
    q = a//b
    return extgcd(b, a%b, x2 ,y2, x1-x2*q, y1-y2*q)

def crt2(a, b, m1, m2):
    if a < b:
        a, b = b, a
        m1, m2 = m2, m1
    d, im1, im2 = extgcd(m1, m2)
    if a%d != b%d:
        return None
    mm = m1//d*m2
    x = (a - ((a-b)//d)*(m1*im1)) % mm
    return x, mm
def crt(as_, ms):
    x = as_[0]
    mm = ms[0]
    for a, m in zip(as_[1:], ms[1:]):
        t = crt2(a, x, m, mm)
        if t is None:
            return None
        x, mm = t
    return x, mm
n = int(input())
as_, ms = zip(*(map(int, input().split()) for _ in range(n)))

t = crt(as_, ms)
if t is None:
    print(-1)
else:
    x, mm = t
    if x == 0:
        x = mm
    print(x%(10**9+7))
0