結果

問題 No.305 鍵(2)
ユーザー shi-moshi-mo
提出日時 2016-10-21 20:15:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 11,468 KB
実行使用メモリ 31,444 KB
平均クエリ数 28.62
最終ジャッジ日時 2023-09-24 00:39:36
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
30,904 KB
testcase_01 AC 89 ms
31,384 KB
testcase_02 AC 87 ms
30,956 KB
testcase_03 AC 87 ms
31,240 KB
testcase_04 AC 88 ms
31,080 KB
testcase_05 AC 86 ms
31,444 KB
testcase_06 AC 86 ms
31,392 KB
testcase_07 AC 87 ms
30,860 KB
testcase_08 AC 88 ms
30,980 KB
testcase_09 AC 87 ms
30,820 KB
testcase_10 AC 87 ms
31,140 KB
testcase_11 AC 88 ms
31,328 KB
testcase_12 AC 92 ms
31,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def query(n)
  puts n.join('')
  STDOUT.flush
end

def reply
  x, y = gets.split
  x = x.to_i
  exit 0 if 'unlocked' == y
  x
end

def detect_counts
  counts = []
  0.upto(9) do |i|
    query [i] * 10
    c = reply
    counts << [i, c] if 0 < c
  end
  counts
end

def detect_answer(counts)
  numbers = counts.sort_by{|i, c| c }.reverse
  min_i, min_c = numbers.pop

  answer = Array.new(10)
  numbers.each do |i, c|
    break unless answer.include?(nil)
    10.times do |j|
      next if answer[j]

      q = Array.new(10, min_i)
      q[j] = i

      query q
      n = reply
      next if n == min_c

      answer[j] = (n < min_c) ? min_i : i
    end
  end
  query answer
end

detect_answer(detect_counts)
0