結果

問題 No.182 新規性の虜
ユーザー suppy193suppy193
提出日時 2015-05-27 13:22:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 158 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,672 KB
最終ジャッジ日時 2024-06-08 03:04:30
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,288 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 80 ms
12,416 KB
testcase_03 AC 78 ms
12,160 KB
testcase_04 AC 86 ms
12,160 KB
testcase_05 AC 79 ms
12,288 KB
testcase_06 AC 78 ms
12,160 KB
testcase_07 AC 83 ms
12,288 KB
testcase_08 AC 133 ms
22,760 KB
testcase_09 AC 165 ms
31,164 KB
testcase_10 AC 151 ms
29,096 KB
testcase_11 AC 136 ms
25,592 KB
testcase_12 AC 106 ms
17,876 KB
testcase_13 AC 84 ms
12,288 KB
testcase_14 AC 83 ms
12,160 KB
testcase_15 AC 76 ms
12,288 KB
testcase_16 AC 78 ms
12,416 KB
testcase_17 AC 78 ms
12,160 KB
testcase_18 AC 122 ms
17,676 KB
testcase_19 AC 117 ms
16,392 KB
testcase_20 AC 99 ms
14,968 KB
testcase_21 AC 128 ms
18,488 KB
testcase_22 AC 106 ms
15,744 KB
testcase_23 AC 79 ms
12,288 KB
testcase_24 AC 178 ms
32,672 KB
testcase_25 AC 122 ms
17,920 KB
testcase_26 AC 92 ms
13,756 KB
testcase_27 AC 76 ms
12,288 KB
evil01.txt AC 182 ms
33,624 KB
evil02.txt AC 181 ms
33,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.strip.to_i
a = gets.strip.split(' ')
count = 0

h = Hash.new(0)

a.each do |k|
	h[k] += 1
end

h.each do |k, v|
	count += 1 if v == 1
end
puts count
0