結果

問題 No.1936 Rational Approximation
ユーザー tatyamtatyam
提出日時 2022-04-07 16:44:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-11-28 01:04:17
合計ジャッジ時間 2,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
88,352 KB
testcase_01 AC 134 ms
88,576 KB
testcase_02 AC 134 ms
88,748 KB
testcase_03 AC 137 ms
88,832 KB
testcase_04 AC 136 ms
88,576 KB
testcase_05 AC 137 ms
88,832 KB
testcase_06 AC 137 ms
88,704 KB
testcase_07 AC 146 ms
89,344 KB
testcase_08 AC 139 ms
88,704 KB
testcase_09 AC 138 ms
88,576 KB
testcase_10 AC 138 ms
88,704 KB
testcase_11 AC 135 ms
88,704 KB
testcase_12 AC 135 ms
88,704 KB
testcase_13 AC 137 ms
88,792 KB
testcase_14 AC 129 ms
88,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import *
P, Q = map(int, input().split())
x = P / Q
X = Fraction(P, Q)

ok = Fraction(0)
ng = X
while True:
    mid = ((ok + ng) / Fraction(2)).limit_denominator(Q - 1)
    if mid == ok or mid == ng:
        break
    if mid < X:
        ok = mid
    else:
        ng = mid

L = ok

ok = Fraction(1)
ng = X
while True:
    mid = ((ok + ng) / Fraction(2)).limit_denominator(Q - 1)
    if mid == ok or mid == ng:
        break
    if mid > X:
        ok = mid
    else:
        ng = mid

R = ok

print(L.numerator + L.denominator + R.numerator + R.denominator)
0