結果

問題 No.187 中華風 (Hard)
ユーザー gorugo30gorugo30
提出日時 2021-03-09 19:06:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,051 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-10-11 12:31:05
合計ジャッジ時間 3,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
62,080 KB
testcase_01 AC 53 ms
61,568 KB
testcase_02 AC 95 ms
76,032 KB
testcase_03 AC 103 ms
75,924 KB
testcase_04 AC 128 ms
75,648 KB
testcase_05 AC 128 ms
75,332 KB
testcase_06 AC 120 ms
75,840 KB
testcase_07 AC 129 ms
75,264 KB
testcase_08 AC 122 ms
75,776 KB
testcase_09 AC 123 ms
75,648 KB
testcase_10 AC 120 ms
75,776 KB
testcase_11 AC 119 ms
75,648 KB
testcase_12 AC 120 ms
75,392 KB
testcase_13 AC 54 ms
61,952 KB
testcase_14 AC 54 ms
61,824 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 52 ms
60,416 KB
testcase_19 AC 39 ms
51,840 KB
testcase_20 AC 106 ms
75,224 KB
testcase_21 AC 37 ms
52,224 KB
testcase_22 AC 119 ms
76,160 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ext_gcd(a, b): # ax + by = gcd(a, b)
    if b == 0:
        return (1, 0, a)
    x, y, g = ext_gcd(b, a % b)
    return (y, x - (a // b) * y, g)
def inv_gcd(a, b):
    x, y, g = ext_gcd(a, b)
    return (g, x % b)

# returns (x % lcm(M), lcm(M)),  (x = R[i] (mod M[i]))
def crt(R, M):
    N = len(R)
    r0 = 0
    m0 = 1
    for i in range(N):
        r1 = R[i] % M[i]
        m1 = M[i]
        if m0 < m1:
            r0, r1 = r1, r0
            m0, m1 = m1, m0
        if m0 % m1 == 0:
            if r0 % m1 != r1:
                return (0, 0) # x nai
            continue
        g, im = inv_gcd(m0, m1)
        u1 = m1 // g
        if (r1 - r0) % g != 0:
            return (0, 0) # x nai
        x = ((((r1 - r0) // g) % u1) * im) % u1
        r0 += x * m0
        m0 *= u1
        if r0 < 0:
            r0 += m0
    return (r0, m0)

N = int(input())
R = []
M = []
for i in range(N):
    x, y = map(int, input().split())
    R.append(x)
    M.append(y)
ans = crt(R, M)
if ans[1] == 0:
    print(-1)
else:
    print(ans[0] % (10 ** 9 + 7))
0