結果

問題 No.186 中華風 (Easy)
ユーザー ntudantuda
提出日時 2024-07-15 15:56:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 54,112 KB
最終ジャッジ日時 2024-07-15 15:56:08
合計ジャッジ時間 2,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,792 KB
testcase_01 AC 33 ms
53,464 KB
testcase_02 AC 34 ms
54,076 KB
testcase_03 AC 32 ms
53,332 KB
testcase_04 AC 35 ms
53,016 KB
testcase_05 AC 36 ms
53,736 KB
testcase_06 AC 33 ms
52,988 KB
testcase_07 AC 34 ms
53,216 KB
testcase_08 AC 33 ms
52,196 KB
testcase_09 AC 34 ms
53,908 KB
testcase_10 AC 33 ms
52,268 KB
testcase_11 AC 34 ms
52,664 KB
testcase_12 AC 33 ms
52,196 KB
testcase_13 AC 33 ms
54,112 KB
testcase_14 AC 34 ms
53,236 KB
testcase_15 AC 40 ms
53,860 KB
testcase_16 AC 34 ms
52,136 KB
testcase_17 AC 34 ms
53,396 KB
testcase_18 AC 35 ms
53,216 KB
testcase_19 AC 35 ms
53,120 KB
testcase_20 AC 37 ms
53,752 KB
testcase_21 AC 35 ms
53,464 KB
testcase_22 AC 34 ms
53,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

XY = [list(map(int,input().split())) for _ in range(3)]
X,Y = map(list,zip(*XY))

def extended_euclid(a, b):
    if b == 0:
        return (1, 0)
    else:
        xd, yd = extended_euclid(b, a % b)
        return (yd, xd - a // b * yd)

from math import gcd,lcm

x, y = 0, 1
for i in range(3):
    x0, y0 = XY[i]
    d = gcd(y,y0)
    y //= d
    y0 //= d
    p, q = extended_euclid(y, y0)
    x = (x0 * y * p + x * y0 * q) % (y * y0 * d)
    y *= y0 * d
r = x
m = y
for x,y in XY:
    if r % y != x:
        print(-1)
        exit()
if r == 0:
    print(lcm(*Y))
else:
    print(r)
0