結果

問題 No.187 中華風 (Hard)
ユーザー proriboneproribone
提出日時 2024-02-17 01:22:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,357 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 77,812 KB
最終ジャッジ日時 2024-09-28 23:23:11
合計ジャッジ時間 11,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,764 KB
testcase_01 AC 51 ms
62,496 KB
testcase_02 AC 564 ms
76,720 KB
testcase_03 AC 541 ms
76,620 KB
testcase_04 AC 741 ms
76,804 KB
testcase_05 AC 685 ms
76,828 KB
testcase_06 AC 720 ms
76,892 KB
testcase_07 AC 733 ms
76,896 KB
testcase_08 AC 508 ms
77,160 KB
testcase_09 AC 519 ms
77,076 KB
testcase_10 AC 520 ms
77,064 KB
testcase_11 AC 710 ms
77,124 KB
testcase_12 AC 584 ms
77,044 KB
testcase_13 AC 149 ms
76,288 KB
testcase_14 AC 155 ms
76,556 KB
testcase_15 AC 667 ms
77,420 KB
testcase_16 AC 659 ms
77,812 KB
testcase_17 AC 37 ms
52,656 KB
testcase_18 AC 49 ms
61,596 KB
testcase_19 AC 38 ms
53,120 KB
testcase_20 AC 472 ms
76,936 KB
testcase_21 AC 37 ms
52,468 KB
testcase_22 AC 717 ms
77,068 KB
testcase_23 WA -
testcase_24 AC 37 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def pregarner(r,m):
    def gcd(a,b):
        if b==0:
            return a
        return gcd(b,a%b)
    n=len(m)

    for i in range(n):
        for j in range(i):
            g=gcd(m[i],m[j])
            if (r[i]-r[j])%g!=0:
                return False
            
            m[i]//=g;m[j]//=g
            gi=gcd(m[i],g)
            gj=g//gi

            while gcd(gi,gj)!=1:
                h=gcd(gi,gj)
                gi*=h
                gj//=h
            
            m[i]*=gi
            m[j]*=gj
    
    return True

def garner(r,m,MOD):
    def extgcd(a,b):
        if b==0:
            return 1,0,a
        else:
            c,x,g=extgcd(b,a%b)
            return x,c-a//b*x,g
    
    def modinv(a,m):
        x,_,_=extgcd(a,m)
        return x%m
    
    n=len(r)
    m.append(MOD)

    constants=[0]*(n+1)
    coeffs=[1]*(n+1)
    
    for k in range(len(r)):
        t=(r[k]-constants[k])*modinv(coeffs[k],m[k])%m[k]
        for i in range(k+1,len(m)):
            constants[i]=(constants[i]+t*coeffs[i])%m[i]
            coeffs[i]=coeffs[i]*m[k]%m[i]

    return constants[-1], coeffs[-1]

N=int(input())
X,Y=[],[]

for _ in range(N):
    x,y=map(int,input().split())
    X.append(x)
    Y.append(y)

if not pregarner(X,Y):
    print(-1)
else:
    res,l=garner(X,Y,10**9+7)
    if res==0:
        print(l)
    else:
        print(res)
0