結果

問題 No.182 新規性の虜
ユーザー simansiman
提出日時 2016-03-19 23:47:10
言語 Ruby
(3.4.1)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-12-27 02:22:04
合計ジャッジ時間 4,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 86 ms
12,032 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 88 ms
12,032 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 135 ms
18,560 KB
testcase_09 AC 168 ms
27,008 KB
testcase_10 AC 158 ms
23,936 KB
testcase_11 AC 142 ms
21,632 KB
testcase_12 AC 113 ms
15,744 KB
testcase_13 AC 88 ms
12,160 KB
testcase_14 AC 85 ms
12,032 KB
testcase_15 AC 86 ms
12,160 KB
testcase_16 AC 87 ms
12,160 KB
testcase_17 AC 85 ms
12,160 KB
testcase_18 AC 132 ms
17,920 KB
testcase_19 AC 119 ms
16,256 KB
testcase_20 AC 110 ms
14,976 KB
testcase_21 AC 137 ms
18,432 KB
testcase_22 AC 112 ms
15,616 KB
testcase_23 AC 84 ms
12,032 KB
testcase_24 AC 174 ms
27,904 KB
testcase_25 AC 137 ms
18,432 KB
testcase_26 AC 96 ms
13,056 KB
testcase_27 AC 85 ms
12,160 KB
evil01.txt AC 178 ms
28,544 KB
evil02.txt AC 176 ms
28,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

class Yukicoder
  def initialize
    n = gets.chomp.to_i
    a = gets.chomp.split(' ').map(&:to_i)
    hash = Hash.new(0)

    a.each do |num|
      hash[num] += 1
    end

    puts hash.count{|k,v| v==1}
  end
end

Yukicoder.new
0