結果

問題 No.187 中華風 (Hard)
ユーザー い
提出日時 2023-09-21 14:07:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 3,000 ms
コード長 2,321 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 11,056 KB
実行使用メモリ 10,612 KB
最終ジャッジ日時 2023-09-21 14:07:28
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,588 KB
testcase_01 AC 32 ms
10,508 KB
testcase_02 AC 162 ms
10,520 KB
testcase_03 AC 164 ms
10,440 KB
testcase_04 AC 184 ms
10,512 KB
testcase_05 AC 186 ms
10,612 KB
testcase_06 AC 188 ms
10,524 KB
testcase_07 AC 183 ms
10,468 KB
testcase_08 AC 184 ms
10,520 KB
testcase_09 AC 185 ms
10,520 KB
testcase_10 AC 184 ms
10,584 KB
testcase_11 AC 192 ms
10,524 KB
testcase_12 AC 183 ms
10,612 KB
testcase_13 AC 129 ms
10,440 KB
testcase_14 AC 131 ms
10,492 KB
testcase_15 AC 145 ms
10,444 KB
testcase_16 AC 142 ms
10,476 KB
testcase_17 AC 29 ms
10,032 KB
testcase_18 AC 31 ms
10,496 KB
testcase_19 AC 29 ms
10,016 KB
testcase_20 AC 149 ms
10,380 KB
testcase_21 AC 32 ms
10,032 KB
testcase_22 AC 183 ms
10,520 KB
testcase_23 AC 30 ms
9,896 KB
testcase_24 AC 29 ms
9,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

V = sys.version_info
_39 = False
_310 = False
_311 = False
if V.major == 3:
    _39 = V.minor >= 9
    _310 = V.minor >= 10
    _311 = V.minor >= 11

if _39:
    li = list
    tup = tuple
    dic = dict
    st = set
    ty = type
else:
    from typing import (
        List,
        Tuple,
        Type,
        Dict,
        Set,
    )

    li = List
    tup = Tuple
    dic = Dict
    st = Set
    ty = Type

from sys import stdin

read = stdin.buffer.read
rl = stdin.buffer.readline
rb = lambda: rl().split()
rls = stdin.buffer.readlines


from typing import (
    TypeVar,
    Sequence as Seq,
    Iterable as Iter,
    Protocol as Proto,
    Generic as Gen,
)
from typing import Callable as Fn


from typing import Iterable


def prints(
    a: Iterable[object],
    sep: str = "\n",
) -> None:
    print(sep.join(map(str, a)))


# import numpy as np


def egcd(
    a: int,
    b: int,
) -> tup[int, int, int]:
    if not b:
        if a < 0:
            return -a, -1, 0
        return a, 1, 0
    q, r = divmod(a, b)
    g, s, t = egcd(b, r)
    return g, t, s - q * t


def crt_mod(
    m: Seq[int],
    r: Seq[int],
    mod: int,
) -> tup[int, int]:
    l = len(m)
    assert len(r) == l
    m = list(m) + [mod]
    p = [1] * (l + 1)
    x = [0] * (l + 1)
    for i, (n, b) in enumerate(zip(m, r)):
        assert n > 0
        g, ip, _ = egcd(p[i], n)
        q, a = divmod(b - x[i], g)
        if a:
            return -1, -1
        n //= g
        t = q % n * ip % n
        for j in range(i + 1, l + 1):
            x[j] += t * p[j]
            x[j] %= m[j]
            p[j] = p[j] * n % m[j]
    return x[-1], p[-1]


def factorize(n: int) -> li[tup[int, int]]:
    f = []
    for i in range(2, n):
        if i * i > n:
            break
        if n % i:
            continue
        c = 0
        while n % i == 0:
            n //= i
            c += 1
        f.append((i, c))
    if n > 1:
        f.append((n, 1))
    return f


def solve() -> None:
    n = int(rl())
    rm = [map(int, rb()) for _ in range(n)]
    r, m = list(zip(*rm))
    mod = 10**9 + 7
    x, l = crt_mod(m, r, mod)
    if l == -1:
        print(-1)
        return

    ans = x if max(r) > 0 else l
    print(ans)


def main() -> None:
    t = 1
    # t = int(rl())
    for _ in range(t):
        solve()


main()
0