結果

問題 No.1793 実数当てゲーム
ユーザー simansiman
提出日時 2022-08-02 17:34:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,408 KB
平均クエリ数 2230.56
最終ジャッジ日時 2024-09-28 13:42:41
合計ジャッジ時間 5,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
29,032 KB
testcase_01 AC 105 ms
28,392 KB
testcase_02 AC 199 ms
29,408 KB
testcase_03 AC 203 ms
29,152 KB
testcase_04 AC 213 ms
29,408 KB
testcase_05 AC 206 ms
28,896 KB
testcase_06 AC 194 ms
29,152 KB
testcase_07 AC 199 ms
28,904 KB
testcase_08 AC 196 ms
28,888 KB
testcase_09 AC 208 ms
29,152 KB
testcase_10 AC 198 ms
28,760 KB
testcase_11 AC 197 ms
29,016 KB
testcase_12 AC 202 ms
29,400 KB
testcase_13 AC 209 ms
28,888 KB
testcase_14 AC 206 ms
29,144 KB
testcase_15 AC 208 ms
28,896 KB
testcase_16 AC 204 ms
29,400 KB
testcase_17 AC 203 ms
29,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T = gets.to_i

def send_query(y)
  STDOUT.puts("? %.12f" % y)
  STDOUT.flush

  res = gets.chomp
  res == "Yes"
end

T.times do
  ok = 0.000001
  ng = 12.22 * 10 ** 74 + 1.0

  24.times do
    y = Math.sqrt(ok * ng)

    if send_query(y)
      ok = y
    else
      ng = y
    end
  end

  STDOUT.puts("! %.12f" % Rational(2 * ok * ng, ok + ng))
  STDOUT.flush
end
0