結果

問題 No.186 中華風 (Easy)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-03 14:15:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,056 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-10-03 04:13:00
合計ジャッジ時間 1,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,352 KB
testcase_01 AC 36 ms
53,544 KB
testcase_02 AC 36 ms
53,356 KB
testcase_03 AC 35 ms
53,484 KB
testcase_04 AC 37 ms
54,184 KB
testcase_05 AC 36 ms
53,480 KB
testcase_06 AC 35 ms
52,724 KB
testcase_07 AC 37 ms
53,692 KB
testcase_08 AC 37 ms
52,656 KB
testcase_09 AC 36 ms
53,420 KB
testcase_10 AC 36 ms
52,752 KB
testcase_11 AC 37 ms
52,256 KB
testcase_12 AC 38 ms
52,340 KB
testcase_13 AC 40 ms
52,884 KB
testcase_14 AC 38 ms
52,396 KB
testcase_15 AC 39 ms
54,028 KB
testcase_16 AC 38 ms
52,596 KB
testcase_17 AC 38 ms
53,080 KB
testcase_18 AC 37 ms
53,148 KB
testcase_19 AC 38 ms
53,304 KB
testcase_20 AC 36 ms
53,016 KB
testcase_21 AC 36 ms
52,948 KB
testcase_22 AC 38 ms
52,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

時刻tを求める

X <= t < X+Y (mod 2X+2Y)
P <= t (mod P+Q)

それぞれに関して中国剰余

"""

import sys
from sys import stdin

import math
def extGCD(a,b):
    g = math.gcd(a,b)
    x, y, u, v = 1, 0, 0, 1
    while b:
        k = a // b
        x -= k * u
        y -= k * v
        x, u = u, x
        y, v = v, y
        a, b = b, a % b
    return g ,x, y

def crt2(b1,m1,b2,m2):
    g,p,q = extGCD(m1,m2)
    if b1 % g != b2 % g:
        return 0,0
    return ( b1 + m1 * ((b2-b1)//g) * p ) % (m1*m2//g) , m1*m2//g

def crt(b,m):
    assert len(b) == len(m)
    
    nb,nm = 0,1
    for i in range(len(b)):
        nb,nm = crt2(nb,nm,b[i],m[i])
        if (nb,nm) == (0,0):
            return (0,0)
    return nb,nm


TT = 1

for loop in range(TT):

    N = 3
    B = []
    M = []

    for i in range(N):
        x,y = map(int,stdin.readline().split())
        B.append(x)
        M.append(y)

    ans,lcm = crt(B,M)
    if (ans,lcm) == (0,0):
        print (-1)
    elif ans == 0:
        print (lcm)
    else:
        print (ans)
0