結果

問題 No.187 中華風 (Hard)
ユーザー roarisroaris
提出日時 2022-11-11 13:59:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 3,000 ms
コード長 730 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-09-13 09:46:30
合計ジャッジ時間 6,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,076 KB
testcase_01 AC 41 ms
54,496 KB
testcase_02 AC 95 ms
75,760 KB
testcase_03 AC 105 ms
76,000 KB
testcase_04 AC 429 ms
76,952 KB
testcase_05 AC 426 ms
76,612 KB
testcase_06 AC 412 ms
76,772 KB
testcase_07 AC 419 ms
76,404 KB
testcase_08 AC 454 ms
76,608 KB
testcase_09 AC 455 ms
77,056 KB
testcase_10 AC 469 ms
76,740 KB
testcase_11 AC 415 ms
76,152 KB
testcase_12 AC 407 ms
76,236 KB
testcase_13 AC 43 ms
61,396 KB
testcase_14 AC 44 ms
60,812 KB
testcase_15 AC 82 ms
75,924 KB
testcase_16 AC 82 ms
75,676 KB
testcase_17 AC 37 ms
53,516 KB
testcase_18 AC 39 ms
54,464 KB
testcase_19 AC 36 ms
53,348 KB
testcase_20 AC 314 ms
76,032 KB
testcase_21 AC 37 ms
52,588 KB
testcase_22 AC 417 ms
76,892 KB
testcase_23 AC 38 ms
52,692 KB
testcase_24 AC 38 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/187
import sys
input = sys.stdin.readline
from math import gcd

def ext_gcd(a, b):
    if b==0:
        return 1, 0
    
    s, t = ext_gcd(b, a%b)
    return t, s-a//b*t

def crt(rs, ms):
    r, m = 0, 1
    
    for ri, mi in zip(rs, ms):
        p, q = ext_gcd(m, mi)
        g = gcd(m, mi)
        
        if (ri-r)%g!=0:
            return -1, -1
        
        r += m*(ri-r)//g*p
        m *= mi//g
        r %= m
    
    return r, m

N = int(input())
rs, ms = [], []

for _ in range(N):
    r, m = map(int, input().split())
    rs.append(r)
    ms.append(m)

r, m = crt(rs, ms)

if r==-1:
    print(r)
else:
    if r==0:
        print(m%(10**9+7))
    else:
        print(r%(10**9+7))
0