結果

問題 No.513 宝探し2
ユーザー simansiman
提出日時 2020-12-10 08:37:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 29,016 KB
平均クエリ数 63.42
最終ジャッジ日時 2024-07-17 09:57:12
合計ジャッジ時間 5,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

cy = 0
cx = 0

STDOUT.puts("%d %d" % [cx, cy])
STDOUT.flush
current_d = gets.to_i

if current_d == 0
  exit
end

ok = 0
ng = 100_001

50.times do
  x = (ok + ng) / 2

  STDOUT.puts("%d %d" % [x, cy])
  STDOUT.flush
  d = gets.to_i

  if d == 0
    exit
  end

  if current_d >= d
    ok = x
    current_d = d
  else
    ng = x
  end
end

cx = ok
ok = 0
ng = 100_001

49.times do
  y = (ok + ng) / 2

  STDOUT.puts("%d %d" % [cx, y])
  STDOUT.flush
  d = gets.to_i

  if d == 0
    exit
  end

  if current_d >= d
    ok = y
    current_d = d
  else
    ng = y
  end
end
0