結果
| 問題 | No.1793 実数当てゲーム | 
| コンテスト | |
| ユーザー |  vwxyz | 
| 提出日時 | 2023-12-26 08:25:33 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 265 bytes | 
| コンパイル時間 | 111 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 27,752 KB | 
| 平均クエリ数 | 12.33 | 
| 最終ジャッジ日時 | 2024-09-28 13:42:55 | 
| 合計ジャッジ時間 | 2,962 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 18 | 
ソースコード
T=int(input())
for t in range(T):
    l=1e-6
    r=12.22*1e74
    for _ in range(24):
        mid=(l*r)**.5
        print("?","{:10f}".format(mid))
        S=input()
        if S=="Yes":
            l=mid
        else:
            r=mid
    ans=l
    print("!",ans)
            
            
            
        