結果
問題 | No.1936 Rational Approximation |
ユーザー | tatyam |
提出日時 | 2022-04-07 15:42:25 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 549 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 88,704 KB |
最終ジャッジ日時 | 2024-11-28 00:48:33 |
合計ジャッジ時間 | 3,299 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
88,576 KB |
testcase_01 | AC | 137 ms
88,448 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 135 ms
88,192 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 137 ms
88,448 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 132 ms
88,448 KB |
ソースコード
from fractions import * P, Q = map(int, input().split()) x = P / Q X = Fraction(P, Q) ok = 0.0 ng = x for i in range(60): mid = (ok + ng) / 2 if Fraction(mid).limit_denominator(Q - 1) < X: ok = mid else: ng = mid L = Fraction(ok).limit_denominator(Q - 1) ok = 1.0 ng = x for i in range(60): mid = (ok + ng) / 2 if Fraction(mid).limit_denominator(Q - 1) > X: ok = mid else: ng = mid R = Fraction(ok).limit_denominator(Q - 1) print(L.numerator + L.denominator + R.numerator + R.denominator)