結果
問題 |
No.187 中華風 (Hard)
|
ユーザー |
![]() |
提出日時 | 2021-10-12 19:02:35 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 88 ms / 3,000 ms |
コード長 | 661 bytes |
コンパイル時間 | 266 ms |
コンパイル使用メモリ | 82,256 KB |
実行使用メモリ | 75,684 KB |
最終ジャッジ日時 | 2024-09-17 05:55:23 |
合計ジャッジ時間 | 3,239 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
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) Q,R = divmod(r1-r0,g) if R%g: return (0,0) M11 = M1//g r0 += Q%M11*minv%M11*M0 M0 *= M11 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)