結果

問題 No.1936 Rational Approximation
ユーザー Akijin_007Akijin_007
提出日時 2022-05-13 22:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 53,472 KB
最終ジャッジ日時 2024-07-22 03:10:18
合計ジャッジ時間 1,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 39 ms
52,748 KB
testcase_02 AC 39 ms
52,552 KB
testcase_03 AC 39 ms
53,292 KB
testcase_04 AC 40 ms
52,344 KB
testcase_05 AC 39 ms
53,068 KB
testcase_06 AC 40 ms
52,016 KB
testcase_07 AC 39 ms
52,664 KB
testcase_08 AC 39 ms
52,160 KB
testcase_09 AC 40 ms
52,432 KB
testcase_10 AC 38 ms
52,892 KB
testcase_11 AC 39 ms
53,072 KB
testcase_12 AC 39 ms
52,692 KB
testcase_13 AC 39 ms
53,472 KB
testcase_14 AC 38 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

P, Q = map(int, input().split())

def xgcd(a,b):
    prevx, nextx = 1, 0
    prevy, nexty = 0, 1
    while b:
        quotient = a//b
        nextx, prevx = prevx - quotient * nextx, nextx
        nexty, prevy = prevy - quotient * nexty, nexty
        a, b = b, a % b
        # print(a,b)
    return prevx, prevy,a

x, y, g = xgcd(P, -Q)

a, b = divmod(x, Q)
x -= Q * a
y -= P * a

mx = Q - x
my = P - y

print(x + y + mx + my)
0