結果
問題 | No.1793 実数当てゲーム |
ユーザー |
![]() |
提出日時 | 2023-12-26 08:09:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 248 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,744 KB |
平均クエリ数 | 2.00 |
最終ジャッジ日時 | 2024-09-28 13:42:50 |
合計ジャッジ時間 | 2,940 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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("?",mid) S=input() if S=="Yes": l=mid else: r=mid ans=l print("!",ans)