結果

問題 No.1793 実数当てゲーム
ユーザー 👑 rin204rin204
提出日時 2023-02-03 14:45:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 97,952 KB
平均クエリ数 2230.56
最終ジャッジ日時 2024-09-28 13:42:53
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
92,220 KB
testcase_01 AC 102 ms
92,228 KB
testcase_02 AC 239 ms
97,624 KB
testcase_03 AC 244 ms
97,500 KB
testcase_04 AC 245 ms
97,628 KB
testcase_05 AC 252 ms
97,052 KB
testcase_06 AC 253 ms
97,240 KB
testcase_07 AC 237 ms
97,904 KB
testcase_08 AC 231 ms
97,808 KB
testcase_09 AC 256 ms
97,404 KB
testcase_10 AC 257 ms
97,952 KB
testcase_11 AC 234 ms
97,672 KB
testcase_12 AC 243 ms
97,464 KB
testcase_13 AC 243 ms
97,592 KB
testcase_14 AC 246 ms
97,568 KB
testcase_15 AC 245 ms
97,472 KB
testcase_16 AC 249 ms
97,440 KB
testcase_17 AC 247 ms
97,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from pprint import pprint

DEBUG = False

if DEBUG:
    x = ""
    n = 1.41421356237309504880168872420969807856967187537694

    def print(Q, flush):
        # pprint(Q)
        y = float(Q[2:])
        if Q[0] == "!":
            mi = min(abs(n - y), abs(n - y) / abs(n))
            pprint(mi)
            return
        global x
        if y <= n:
            x = "Yes"
        else:
            x = "No"

    def input():
        return x


def judge(Q):
    print(Q, flush=True)
    if Q[0] == "?":
        return input()

T = 1
if not DEBUG:
    T = int(input())

for _ in range(T):
    r = 12.22 * 10 ** 74
    l = 10 ** -6
    for _ in range(24):
        mid = (l * r) ** 0.5
        res = judge(f"? {mid:.12f}")
        # pprint(res)
        if res == "No":
            r = mid
        elif res == "Yes":
            l = mid
        else:
            assert False
            exit()

    ans = (l * r) ** 0.5
    judge(f"! {ans:.12f}")

0