結果

問題 No.187 中華風 (Hard)
ユーザー okayu29okayu29
提出日時 2023-01-23 23:00:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,243 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 77,340 KB
最終ジャッジ日時 2024-06-25 17:08:02
合計ジャッジ時間 12,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,824 KB
testcase_01 AC 55 ms
64,008 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 221 ms
70,096 KB
testcase_14 AC 218 ms
70,260 KB
testcase_15 AC 544 ms
76,796 KB
testcase_16 AC 552 ms
76,316 KB
testcase_17 AC 38 ms
52,868 KB
testcase_18 AC 53 ms
62,256 KB
testcase_19 AC 40 ms
53,328 KB
testcase_20 WA -
testcase_21 AC 38 ms
53,860 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 38 ms
53,744 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 garner(b, m, md):
    x = 0
    mm = 1
    for i in range(n):
        mmi = 1
        for j in range(i):
            mmi *= m[j]
        _, inv, _ = extgcd(mmi, m[i])
        x += mm*(inv*(b[i] - x) % m[i])
        x %= md
        mm *= m[i]
        mm %= md
    return x, mm

def pre_garner(b, m):
    for i in range(len(m)):
        for j in range(len(m)):
            if i == j:
                continue
            g = gcd(m[i], m[j])
            if (b[i]-b[j])%g != 0:
                return False
            m[i] //= g
            m[j] //= g
            gi = gcd(g, m[i])
            gj = g//gi
            while g != 1:
                g = gcd(gi, gj)
                gi *= g
                gj //= g
            m[i] *= gi
            m[j] *= gj
            b[i] %= m[i]
            b[j] %= m[j]
    return True

n = int(input())
b, m = zip(*(tuple(map(int, input().split())) for _ in range(n)))
b, m = list(b), list(m)
if not pre_garner(b, m):
    print(-1)
else:
    x, mm = garner(b, m, 10**9+7)
    if x == 0:
        print(mm)
    else:
        print(x)

0