結果

問題 No.1793 実数当てゲーム
ユーザー KudeKude
提出日時 2021-12-22 14:26:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,488 KB
平均クエリ数 2230.56
最終ジャッジ日時 2024-09-28 13:35:59
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
27,488 KB
testcase_01 AC 58 ms
27,368 KB
testcase_02 AC 153 ms
27,232 KB
testcase_03 AC 154 ms
27,104 KB
testcase_04 AC 153 ms
27,488 KB
testcase_05 AC 149 ms
27,488 KB
testcase_06 AC 150 ms
27,488 KB
testcase_07 AC 148 ms
27,360 KB
testcase_08 AC 157 ms
27,232 KB
testcase_09 AC 157 ms
27,488 KB
testcase_10 AC 158 ms
26,976 KB
testcase_11 AC 158 ms
27,352 KB
testcase_12 AC 165 ms
27,480 KB
testcase_13 AC 165 ms
27,232 KB
testcase_14 AC 169 ms
27,096 KB
testcase_15 AC 155 ms
27,352 KB
testcase_16 AC 159 ms
27,352 KB
testcase_17 AC 154 ms
27,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    l, r = 1e-6, 12.22e74
    for _ in range(24):
        c = (l*r) ** 0.5
        print(f'? {c:.8f}')
        if input() == 'Yes':
            l = c
        else:
            r = c
    print(f'! {2*l*r / (l+r):.8f}')
0