結果
問題 | No.1793 実数当てゲーム |
ユーザー | to-omer |
提出日時 | 2021-12-22 01:11:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 174 ms / 2,000 ms |
コード長 | 912 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 27,624 KB |
平均クエリ数 | 2230.56 |
最終ジャッジ日時 | 2024-09-28 13:28:43 |
合計ジャッジ時間 | 4,430 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
27,232 KB |
testcase_01 | AC | 53 ms
27,232 KB |
testcase_02 | AC | 161 ms
27,624 KB |
testcase_03 | AC | 157 ms
27,360 KB |
testcase_04 | AC | 161 ms
27,360 KB |
testcase_05 | AC | 155 ms
27,616 KB |
testcase_06 | AC | 159 ms
27,232 KB |
testcase_07 | AC | 157 ms
27,112 KB |
testcase_08 | AC | 157 ms
27,488 KB |
testcase_09 | AC | 158 ms
27,352 KB |
testcase_10 | AC | 169 ms
27,608 KB |
testcase_11 | AC | 158 ms
27,104 KB |
testcase_12 | AC | 158 ms
27,352 KB |
testcase_13 | AC | 174 ms
27,352 KB |
testcase_14 | AC | 162 ms
27,488 KB |
testcase_15 | AC | 153 ms
27,352 KB |
testcase_16 | AC | 164 ms
27,480 KB |
testcase_17 | AC | 158 ms
27,224 KB |
ソースコード
from math import sqrt from sys import stdout def query(s: str) -> str: print("?", s) stdout.flush() res = input().rstrip() if res == "-1": exit(0) return res == "Yes" def answer(s: str): print("!", s) stdout.flush() def float2string(f: float) -> str: s = f"{f:0.100f}" return s[0] + s[1:].rstrip("0").rstrip(".") def middle(left: float, right: float, last=False) -> float: if last: return 2 * right * left / (right + left) else: return sqrt(left * right) def solve(): left = 1e-6 right = 12.22e74 for _ in range(24): mid = middle(left, right) if query(float2string(mid)): left = mid else: right = mid return answer(float2string(middle(left, right, True))) def main(): T = int(input()) for _ in range(T): solve() if __name__ == "__main__": main()