結果

問題 No.187 中華風 (Hard)
ユーザー mkawa2mkawa2
提出日時 2020-01-27 21:46:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 983 ms / 3,000 ms
コード長 1,021 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-14 15:10:57
合計ジャッジ時間 11,460 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 56 ms
10,624 KB
testcase_03 AC 57 ms
10,752 KB
testcase_04 AC 893 ms
10,752 KB
testcase_05 AC 888 ms
10,880 KB
testcase_06 AC 893 ms
10,880 KB
testcase_07 AC 884 ms
11,008 KB
testcase_08 AC 983 ms
10,880 KB
testcase_09 AC 970 ms
10,752 KB
testcase_10 AC 973 ms
10,880 KB
testcase_11 AC 897 ms
10,880 KB
testcase_12 AC 894 ms
10,880 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 32 ms
10,496 KB
testcase_15 AC 49 ms
10,752 KB
testcase_16 AC 50 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 627 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 896 ms
10,752 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

# a % y0 = x0
# a % y1 = x1
# a = y0 * p + x0
# a = y1 * q + x1
# まとめて
# y0 * p + x0 = y1 * q + x1
# y0 * p - y1 * q = x1 - x0

# a = lcm(y0,y1)*r + (y0 * p + x0)

def extgcd(a, b, c):
    if b == 0: return c // a, 0, abs(a)
    x, y, g = extgcd(b, a % b, c)
    return y, x - y * (a // b), g

md = 10 ** 9 + 7
def main():
    n = II()
    x1, y1 = MI()
    for _ in range(n - 1):
        x2, y2 = MI()
        p, q, g = extgcd(y1, -y2, x2 - x1)
        if (x2 - x1) % g:
            print(-1)
            exit()
        x1 = y1 * p + x1
        y1 = y1 * y2 // g
        x1 %= y1
    ans = (x1 - 1) % y1 + 1
    print(ans % md)

main()
0