結果

問題 No.187 中華風 (Hard)
ユーザー rpy3cpprpy3cpp
提出日時 2015-09-18 20:13:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-19 06:55:44
合計ジャッジ時間 7,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 104 ms
75,008 KB
testcase_03 AC 93 ms
75,136 KB
testcase_04 AC 421 ms
76,672 KB
testcase_05 AC 422 ms
76,652 KB
testcase_06 AC 418 ms
76,412 KB
testcase_07 AC 421 ms
76,928 KB
testcase_08 AC 446 ms
76,416 KB
testcase_09 AC 452 ms
76,800 KB
testcase_10 AC 446 ms
76,672 KB
testcase_11 AC 422 ms
76,544 KB
testcase_12 AC 441 ms
76,928 KB
testcase_13 AC 63 ms
63,232 KB
testcase_14 AC 63 ms
62,976 KB
testcase_15 AC 99 ms
75,392 KB
testcase_16 AC 90 ms
75,396 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 WA -
testcase_19 AC 40 ms
52,352 KB
testcase_20 AC 319 ms
75,956 KB
testcase_21 AC 40 ms
52,224 KB
testcase_22 AC 418 ms
76,928 KB
testcase_23 AC 39 ms
52,480 KB
testcase_24 AC 40 ms
51,968 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 gcd_ext(m, n):
    x, y, u, v = 1, 0, 0, 1
    while n:
        k, m = divmod(m, n)
        m, n = n, m
        x, y, u, v = u, v, x - u * k, y - v * k
    return m, x, y


def solve2(x1, y1, x2, y2):
    gcd, a, b = gcd_ext(y1, y2)
    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
    for x1, y1 in xy[1:]:
        x0, y0 = solve2(x0, y0, x1, y1)
        if x0 == -1:
            return -1
    return x0 if x0 else y0

N, xy = read_data()
print(solve(N, xy) % (10**9 + 7))
0