結果

問題 No.246 質問と回答
ユーザー yozayoza
提出日時 2015-07-17 23:42:16
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,272 KB
平均クエリ数 30.77
最終ジャッジ日時 2024-07-16 07:06:57
合計ジャッジ時間 5,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
29,016 KB
testcase_01 AC 134 ms
28,760 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 139 ms
28,760 KB
testcase_06 AC 132 ms
28,888 KB
testcase_07 AC 137 ms
28,888 KB
testcase_08 AC 130 ms
28,632 KB
testcase_09 WA -
testcase_10 AC 132 ms
28,888 KB
testcase_11 AC 131 ms
28,920 KB
testcase_12 WA -
testcase_13 AC 132 ms
28,632 KB
testcase_14 AC 135 ms
28,888 KB
testcase_15 AC 132 ms
29,168 KB
testcase_16 AC 136 ms
28,632 KB
testcase_17 AC 133 ms
29,272 KB
testcase_18 AC 129 ms
28,632 KB
testcase_19 AC 130 ms
28,888 KB
testcase_20 AC 133 ms
28,632 KB
testcase_21 AC 131 ms
28,888 KB
testcase_22 AC 132 ms
28,632 KB
testcase_23 AC 128 ms
28,504 KB
testcase_24 AC 132 ms
28,504 KB
testcase_25 AC 132 ms
28,888 KB
testcase_26 AC 131 ms
28,888 KB
testcase_27 WA -
testcase_28 AC 132 ms
28,920 KB
testcase_29 AC 130 ms
28,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

move = 10 ** 9 / 2 + 10000 
border = move

100.times do
  puts "? #{border}"
  STDOUT.flush
  res = gets.to_i == 1 ? 1 : -1
  if move == 1 and res == -1 then
    puts "! #{border - 1}"
    break
  end
  move = [move/2, 1].max
  border += res * move
end
0