結果

問題 No.1830 Balanced Majority
ユーザー simansiman
提出日時 2022-02-05 15:16:31
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,400 KB
平均クエリ数 7.92
最終ジャッジ日時 2024-06-11 13:34:57
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
28,632 KB
testcase_01 AC 91 ms
29,016 KB
testcase_02 AC 93 ms
29,016 KB
testcase_03 AC 93 ms
28,760 KB
testcase_04 AC 94 ms
28,504 KB
testcase_05 AC 93 ms
28,760 KB
testcase_06 AC 93 ms
29,120 KB
testcase_07 AC 94 ms
28,640 KB
testcase_08 AC 92 ms
28,640 KB
testcase_09 AC 93 ms
28,768 KB
testcase_10 AC 92 ms
28,896 KB
testcase_11 WA -
testcase_12 AC 92 ms
29,152 KB
testcase_13 AC 94 ms
29,024 KB
testcase_14 AC 94 ms
29,024 KB
testcase_15 AC 94 ms
29,024 KB
testcase_16 AC 93 ms
29,152 KB
testcase_17 AC 95 ms
29,024 KB
testcase_18 AC 92 ms
28,896 KB
testcase_19 AC 93 ms
28,896 KB
testcase_20 WA -
testcase_21 AC 94 ms
28,640 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 94 ms
28,640 KB
testcase_25 AC 92 ms
28,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

def send_query(k)
  STDOUT.puts("? #{k}")
  STDOUT.flush

  s = gets.to_i
  rs = k - s

  s - rs
end

s_1 = send_query(1)
s_n_1 = send_query(N - 1)

if s_1 == s_n_1
  puts "! #{2} #{N - 1}"
  exit
end

l = 2
r = N - 1

18.times do
  k = (l + r) / 2
  s = send_query(k)

  if s == 0
    if k < N / 2
      puts "! #{k + 1} #{N}"
    else
      puts "! 1 #{k}"
    end

    exit
  elsif s_1 < 0 && s < 0
    l = k
  elsif s_1 > 0 && s < 0
    r = k
  elsif s_n_1 < 0 && s < 0
    r = k
  elsif s_n_1 < 0 && s > 0
    l = k
  end
end
0