結果

問題 No.513 宝探し2
ユーザー simansiman
提出日時 2020-12-10 17:15:09
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,888 KB
平均クエリ数 93.75
最終ジャッジ日時 2024-07-17 09:58:07
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
28,888 KB
testcase_01 AC 111 ms
28,888 KB
testcase_02 AC 112 ms
28,888 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 111 ms
28,888 KB
testcase_06 WA -
testcase_07 AC 110 ms
28,888 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def ternary_search_tree(left, right)
  loop_cnt = 25

  loop_cnt.times do
    if yield((left * 2 + right) / 3.0) < yield((left + right * 2) / 3.0)
      right = (left + right * 2) / 3.0
    else
      left = (left * 2 + right) / 3.0
    end
  end

  (left + right) / 2.0
end

cx = 0
cy = 0

cx = ternary_search_tree(0, 100_001) { |x|
  STDOUT.puts("%d %d" % [x, cy])
  STDOUT.flush
  d = gets.to_i

  if d == 0
    exit
  end

  d
}

cy = ternary_search_tree(0, 100_001) { |y|
  STDOUT.puts("%d %d" % [cx, y])
  STDOUT.flush
  d = gets.to_i

  if d == 0
    exit
  end

  d
}
0