結果

問題 No.182 新規性の虜
ユーザー finefine
提出日時 2015-10-11 22:48:40
言語 Ruby
(3.4.1)
結果
AC  
実行時間 215 ms / 5,000 ms
コード長 132 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,552 KB
最終ジャッジ日時 2024-12-26 19:48:33
合計ジャッジ時間 6,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,160 KB
testcase_01 AC 93 ms
11,904 KB
testcase_02 AC 88 ms
11,904 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 88 ms
11,904 KB
testcase_05 AC 90 ms
12,032 KB
testcase_06 AC 91 ms
11,904 KB
testcase_07 AC 95 ms
12,032 KB
testcase_08 AC 175 ms
22,624 KB
testcase_09 AC 215 ms
31,136 KB
testcase_10 AC 175 ms
29,228 KB
testcase_11 AC 167 ms
25,488 KB
testcase_12 AC 123 ms
17,752 KB
testcase_13 AC 100 ms
12,160 KB
testcase_14 AC 91 ms
12,032 KB
testcase_15 AC 93 ms
11,904 KB
testcase_16 AC 91 ms
12,288 KB
testcase_17 AC 100 ms
11,904 KB
testcase_18 AC 149 ms
17,564 KB
testcase_19 AC 140 ms
16,140 KB
testcase_20 AC 119 ms
14,960 KB
testcase_21 AC 147 ms
18,472 KB
testcase_22 AC 121 ms
15,320 KB
testcase_23 AC 90 ms
12,032 KB
testcase_24 AC 206 ms
32,552 KB
testcase_25 AC 138 ms
17,664 KB
testcase_26 AC 109 ms
13,760 KB
testcase_27 AC 87 ms
12,160 KB
evil01.txt AC 208 ms
33,524 KB
evil02.txt AC 202 ms
33,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
array = gets.chomp.split(" ")
hash = Hash.new(0)
array.each{|value|
	hash[value] += 1    
}
puts hash.flatten.count(1)
0