結果

問題 No.187 中華風 (Hard)
ユーザー rpy3cpprpy3cpp
提出日時 2015-09-18 20:29:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 365 ms / 3,000 ms
コード長 770 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,016 KB
最終ジャッジ日時 2024-07-19 06:56:06
合計ジャッジ時間 5,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,912 KB
testcase_01 AC 44 ms
62,832 KB
testcase_02 AC 78 ms
75,704 KB
testcase_03 AC 77 ms
75,056 KB
testcase_04 AC 348 ms
76,504 KB
testcase_05 AC 346 ms
76,612 KB
testcase_06 AC 349 ms
76,896 KB
testcase_07 AC 339 ms
76,360 KB
testcase_08 AC 362 ms
76,584 KB
testcase_09 AC 354 ms
76,716 KB
testcase_10 AC 365 ms
77,016 KB
testcase_11 AC 337 ms
76,492 KB
testcase_12 AC 349 ms
76,720 KB
testcase_13 AC 53 ms
63,096 KB
testcase_14 AC 52 ms
63,908 KB
testcase_15 AC 77 ms
72,772 KB
testcase_16 AC 74 ms
71,488 KB
testcase_17 AC 39 ms
53,368 KB
testcase_18 AC 53 ms
61,200 KB
testcase_19 AC 39 ms
53,648 KB
testcase_20 AC 268 ms
76,300 KB
testcase_21 AC 36 ms
52,800 KB
testcase_22 AC 341 ms
76,876 KB
testcase_23 AC 37 ms
53,224 KB
testcase_24 AC 35 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    xy = []
    for n in range(N):
        x, y = map(int, input().split())
        xy.append((x, y))
    return N, xy


def solve2(x1, y1, x2, y2):
    gcd = y1
    n = y2
    a = 1
    u = 0
    while n:
        k, gcd = divmod(gcd, n)
        gcd, n = n, gcd
        a, u = u, a - u * k
    lcm = y1 * y2 // gcd
    k, r = divmod(x1 - x2, gcd)
    if r != 0:
        return -1, lcm
    z = (x1 - k * a * y1) % lcm
    return z, lcm


def solve(N, xy):
    x0, y0 = xy[0]
    if N == 1:
        return x0 if x0 else y0
    mod = 10 ** 9 + 7
    for x1, y1 in xy[1:]:
        x0, y0 = solve2(x0, y0, x1, y1)
        if x0 == -1:
            return -1
    return x0 % mod if x0 else y0 % mod

N, xy = read_data()
print(solve(N, xy))
0