結果

問題 No.2252 Find Zero
ユーザー maimai
提出日時 2023-03-24 21:52:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,280 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 17:02:01
合計ジャッジ時間 4,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
28,768 KB
testcase_01 AC 145 ms
28,896 KB
testcase_02 AC 124 ms
29,280 KB
testcase_03 AC 136 ms
28,896 KB
testcase_04 AC 128 ms
28,632 KB
testcase_05 AC 121 ms
28,504 KB
testcase_06 AC 119 ms
28,760 KB
testcase_07 AC 126 ms
28,504 KB
testcase_08 AC 128 ms
28,648 KB
testcase_09 AC 135 ms
29,024 KB
testcase_10 AC 120 ms
28,888 KB
testcase_11 AC 121 ms
28,768 KB
testcase_12 AC 120 ms
28,760 KB
testcase_13 AC 120 ms
28,768 KB
testcase_14 AC 121 ms
28,256 KB
testcase_15 AC 122 ms
28,832 KB
testcase_16 AC 121 ms
28,536 KB
testcase_17 AC 125 ms
28,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

(n/2).times do |i|
  u = i*2
  v = i*2+1
  puts "? #{u} #{v}"
  STDOUT.flush
  w = gets.to_i
  if u == w
    puts "! #{v}"
    STDOUT.flush
    exit
  elsif v == w
    puts "! #{u}"
    STDOUT.flush
    exit
  end
end

puts "! #{n-1}"
STDOUT.flush
0