結果

問題 No.1793 実数当てゲーム
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-12-23 21:45:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,352 KB
平均クエリ数 2230.56
最終ジャッジ日時 2024-09-28 13:37:47
合計ジャッジ時間 4,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
27,232 KB
testcase_01 AC 54 ms
27,232 KB
testcase_02 AC 153 ms
26,976 KB
testcase_03 AC 152 ms
26,976 KB
testcase_04 AC 152 ms
26,976 KB
testcase_05 AC 146 ms
27,104 KB
testcase_06 AC 145 ms
27,112 KB
testcase_07 AC 146 ms
26,984 KB
testcase_08 AC 146 ms
27,232 KB
testcase_09 AC 146 ms
27,096 KB
testcase_10 AC 148 ms
27,352 KB
testcase_11 AC 146 ms
27,096 KB
testcase_12 AC 151 ms
27,352 KB
testcase_13 AC 157 ms
27,096 KB
testcase_14 AC 154 ms
26,976 KB
testcase_15 AC 155 ms
26,840 KB
testcase_16 AC 162 ms
26,712 KB
testcase_17 AC 152 ms
27,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

TT = int(stdin.readline())

for qloop in range(TT):

    L = 10**-6
    R = 12.22*(10**74)

    for loop in range(24):

        M = (L*R)**0.5
        print ("?","%f" % M,flush=True)

        S = stdin.readline()[:-1]
        if S[0] == "Y":
            L = M
        elif S[0] == "N":
            R = M
        else:
            sys.exit(1)

    print ("!", "%f" % ((L*R)**0.5) , flush=True)
    
0