結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
64,016 KB
testcase_01 AC 49 ms
62,456 KB
testcase_02 AC 420 ms
76,676 KB
testcase_03 AC 393 ms
76,896 KB
testcase_04 AC 507 ms
76,500 KB
testcase_05 AC 481 ms
76,672 KB
testcase_06 AC 513 ms
76,740 KB
testcase_07 AC 487 ms
76,668 KB
testcase_08 AC 385 ms
76,964 KB
testcase_09 AC 379 ms
77,148 KB
testcase_10 AC 370 ms
77,064 KB
testcase_11 AC 511 ms
77,028 KB
testcase_12 AC 428 ms
77,304 KB
testcase_13 AC 138 ms
76,128 KB
testcase_14 AC 140 ms
77,004 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 33 ms
52,820 KB
testcase_18 AC 43 ms
62,292 KB
testcase_19 AC 31 ms
53,548 KB
testcase_20 AC 368 ms
76,872 KB
testcase_21 AC 34 ms
52,684 KB
testcase_22 AC 522 ms
76,792 KB
testcase_23 AC 33 ms
52,788 KB
testcase_24 AC 32 ms
53,128 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]

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:
    print(garner(X,Y,10**9+7))
0