結果

問題 No.24 数当てゲーム
ユーザー harhogefooharhogefoo
提出日時 2016-10-05 09:46:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 11,408 KB
実行使用メモリ 15,272 KB
最終ジャッジ日時 2023-08-13 23:10:31
合計ジャッジ時間 1,600 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
15,048 KB
testcase_01 AC 84 ms
14,992 KB
testcase_02 AC 78 ms
15,084 KB
testcase_03 AC 79 ms
15,016 KB
testcase_04 AC 79 ms
15,080 KB
testcase_05 AC 85 ms
15,048 KB
testcase_06 AC 79 ms
15,272 KB
testcase_07 AC 80 ms
15,120 KB
testcase_08 AC 79 ms
15,056 KB
testcase_09 AC 80 ms
15,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
numbers = (0..9).to_a
init = Array.new(numbers.length, 0)
ary = [numbers, init].transpose
h = Hash[*ary.flatten]

n.times do
  input = gets.chomp.split(" ")
  yes_or_no = input[-1]
  input.delete_at(-1)
  input.map!(&:to_i)

  if yes_or_no == "YES"
    input.each do |i|
      next unless h.has_key?(i)
      h[i] += 1
    end
  else
    input.each do |i|
      h.delete(i)
    end
  end
end

if h.length == 1
  puts h.keys[0]
else
  h = Hash[ h.sort_by{ |_, v| -v } ]
  puts h.shift[0]
end
0