結果

問題 No.187 中華風 (Hard)
ユーザー shinnshinnshinnshinn
提出日時 2022-03-02 23:18:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 745 ms / 3,000 ms
コード長 874 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-16 13:45:05
合計ジャッジ時間 9,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
11,136 KB
testcase_02 AC 64 ms
11,008 KB
testcase_03 AC 63 ms
11,008 KB
testcase_04 AC 676 ms
11,264 KB
testcase_05 AC 670 ms
11,136 KB
testcase_06 AC 668 ms
11,264 KB
testcase_07 AC 685 ms
11,264 KB
testcase_08 AC 729 ms
11,136 KB
testcase_09 AC 728 ms
11,136 KB
testcase_10 AC 745 ms
11,136 KB
testcase_11 AC 680 ms
11,136 KB
testcase_12 AC 675 ms
11,136 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 55 ms
11,008 KB
testcase_16 AC 55 ms
11,008 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 29 ms
11,008 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 473 ms
11,008 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 678 ms
11,136 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    if b == 0:
        return a
    else:
        return gcd(b, a%b)

def extgcd(a, b):
    #拡張ユークリッド互除法
    #ax + by = gcd(a, b)となる(x, y)を求めます
    if b == 0:
        return [1, 0]

    q = a//b
    r = a%b
    
    s, t = extgcd(b, r)
    y = s - q*t
    return [t, y]

def lcm(a, b):
    return a // gcd(a, b) * b

def CRT(rs, ms):
    R = 0
    M = 1
    for r, m in zip(rs, ms):
        g = gcd(M, m)
        s, t = extgcd(M, m)

        if r%g != R%g:
            print(-1)
            exit(0)

        R = (m*t*R + M*s*r) // g
        M = lcm(m, M)
        R %= M
    return [R, M]

x = []
y = []
v = []
n = int(input())
for i in range(n):
    a, b = map(int, input().split())
    x.append(a)
    y.append(b)
    v.append([a, b])

r, m = CRT(x, y)

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