結果

問題 No.187 中華風 (Hard)
ユーザー convexineqconvexineq
提出日時 2021-10-14 04:41:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 3,000 ms
コード長 634 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 81,692 KB
実行使用メモリ 75,076 KB
最終ジャッジ日時 2023-10-17 19:17:41
合計ジャッジ時間 3,223 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,104 KB
testcase_01 AC 52 ms
63,104 KB
testcase_02 AC 69 ms
72,060 KB
testcase_03 AC 68 ms
72,052 KB
testcase_04 AC 86 ms
75,072 KB
testcase_05 AC 86 ms
75,072 KB
testcase_06 AC 87 ms
75,072 KB
testcase_07 AC 86 ms
75,076 KB
testcase_08 AC 88 ms
75,068 KB
testcase_09 AC 88 ms
75,072 KB
testcase_10 AC 87 ms
75,072 KB
testcase_11 AC 86 ms
75,072 KB
testcase_12 AC 85 ms
75,072 KB
testcase_13 AC 54 ms
63,104 KB
testcase_14 AC 54 ms
63,104 KB
testcase_15 AC 68 ms
72,060 KB
testcase_16 AC 67 ms
72,052 KB
testcase_17 AC 37 ms
53,512 KB
testcase_18 AC 50 ms
61,056 KB
testcase_19 AC 37 ms
53,512 KB
testcase_20 AC 79 ms
75,052 KB
testcase_21 AC 37 ms
53,512 KB
testcase_22 AC 86 ms
75,072 KB
testcase_23 AC 37 ms
53,512 KB
testcase_24 AC 37 ms
53,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def inv_gcd(x,y):
    r0,r1,s0,s1 = x,y,1,0
    while r1:
        a,b = divmod(r0,r1)
        r0, r1, s0, s1 = r1, b, s1, s0-a*s1
    return s0%y,r0 # s0*x + ??*y = r0 = gcd(x,y)

def Chinese_remainder_theorem(r,m):
    assert len(r)==len(m)
    r0, M0 = 0,1
    for r1, M1 in zip(r,m):
        minv,g = inv_gcd(M0,M1)
        R = (r1-r0)%M1
        if R%g: return (0,0)
        r0 += R*minv%M1//g*M0
        M0 *= M1//g
    return r0,M0

MOD = 10**9+7
n = int(input())
x = [0]*n
y = [0]*n
for i in range(n):
    x[i],y[i] = map(int,input().split())

r,m = Chinese_remainder_theorem(x,y)
print(-1 if m == 0 else r%MOD if r else m%MOD)
0