結果
問題 | No.24 数当てゲーム |
ユーザー | harhogefoo |
提出日時 | 2016-10-05 09:42:18 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 465 bytes |
コンパイル時間 | 45 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-11-21 17:14:15 |
合計ジャッジ時間 | 1,451 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
12,160 KB |
testcase_01 | AC | 87 ms
12,160 KB |
testcase_02 | AC | 82 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 80 ms
12,288 KB |
testcase_06 | WA | - |
testcase_07 | AC | 78 ms
12,160 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
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 puts h.key(2) end