結果

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

テストケース

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

ソースコード

diff #

cy = 0
cx = 0

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

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
    cx = x
    current_d = d
  end
end

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
    cy = y
    current_d = d
  end
end
0