結果

問題 No.187 中華風 (Hard)
ユーザー proriboneproribone
提出日時 2024-02-16 17:26:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 3,000 ms
コード長 602 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 77,260 KB
最終ジャッジ日時 2024-09-28 19:19:51
合計ジャッジ時間 5,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,768 KB
testcase_01 AC 45 ms
63,232 KB
testcase_02 AC 85 ms
75,736 KB
testcase_03 AC 89 ms
76,328 KB
testcase_04 AC 377 ms
77,260 KB
testcase_05 AC 350 ms
76,812 KB
testcase_06 AC 338 ms
76,764 KB
testcase_07 AC 352 ms
76,796 KB
testcase_08 AC 375 ms
76,912 KB
testcase_09 AC 392 ms
76,648 KB
testcase_10 AC 376 ms
76,772 KB
testcase_11 AC 357 ms
76,464 KB
testcase_12 AC 348 ms
76,728 KB
testcase_13 AC 48 ms
63,536 KB
testcase_14 AC 48 ms
63,420 KB
testcase_15 AC 81 ms
75,284 KB
testcase_16 AC 82 ms
75,760 KB
testcase_17 AC 33 ms
52,804 KB
testcase_18 AC 43 ms
61,056 KB
testcase_19 AC 33 ms
52,376 KB
testcase_20 AC 277 ms
76,088 KB
testcase_21 AC 34 ms
52,628 KB
testcase_22 AC 360 ms
77,168 KB
testcase_23 AC 33 ms
54,544 KB
testcase_24 AC 32 ms
52,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def crt(r,m):
    def extgcd(a,b):
        if b==0:
            return 1,0,a
        c,x,g=extgcd(b,a%b)
        return x,c-a//b*x,g
    
    r0,m0=0,1
    
    for i in range(len(r)):
        p,q,g=extgcd(m0,m[i])

        if r0%g!=r[i]%g:
            return 0,0

        s=(r[i]-r0)//g

        l=m0//g*m[i]
        x=(s*m0*p+r0)%l

        m0=l
        r0=x
    
    return r0,m0

MOD=10**9+7
N=int(input())
X,Y=[],[]
for _ in range(N):
    x,y=map(int,input().split())
    X.append(x)
    Y.append(y)

r,m=crt(X,Y)

if r==0 and m==0:
    print(-1)
elif r==0:
    print(m%MOD)
else:
    print(r%MOD)
0