結果

問題 No.1830 Balanced Majority
ユーザー simansiman
提出日時 2022-02-05 15:19:16
言語 Ruby
(3.3.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,024 KB
平均クエリ数 7.42
最終ジャッジ日時 2024-06-11 13:35:05
合計ジャッジ時間 4,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
28,760 KB
testcase_01 AC 92 ms
28,760 KB
testcase_02 AC 91 ms
28,760 KB
testcase_03 AC 96 ms
28,888 KB
testcase_04 AC 91 ms
28,760 KB
testcase_05 AC 92 ms
28,752 KB
testcase_06 AC 94 ms
29,016 KB
testcase_07 AC 91 ms
28,768 KB
testcase_08 AC 92 ms
28,768 KB
testcase_09 AC 93 ms
28,768 KB
testcase_10 AC 94 ms
28,640 KB
testcase_11 AC 93 ms
28,768 KB
testcase_12 AC 95 ms
29,024 KB
testcase_13 AC 92 ms
28,768 KB
testcase_14 AC 94 ms
28,768 KB
testcase_15 AC 93 ms
28,896 KB
testcase_16 AC 97 ms
28,768 KB
testcase_17 AC 95 ms
28,896 KB
testcase_18 AC 94 ms
28,896 KB
testcase_19 AC 91 ms
28,512 KB
testcase_20 AC 92 ms
28,896 KB
testcase_21 AC 93 ms
28,640 KB
testcase_22 AC 95 ms
29,024 KB
testcase_23 AC 93 ms
28,896 KB
testcase_24 AC 94 ms
28,896 KB
testcase_25 AC 90 ms
28,672 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 * s < 0
    r = k
  elsif s_1 * s > 0
    l = k
  elsif s_n_1 * s < 0
    l = k
  elsif s_n_1 * x > 0
    r = k
  end
end
0