結果

問題 No.182 新規性の虜
ユーザー LeonardoneLeonardone
提出日時 2015-10-17 02:04:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-06-08 03:18:33
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 80 ms
12,416 KB
testcase_06 AC 79 ms
12,032 KB
testcase_07 AC 78 ms
12,032 KB
testcase_08 AC 106 ms
18,688 KB
testcase_09 AC 134 ms
23,552 KB
testcase_10 AC 127 ms
22,144 KB
testcase_11 AC 117 ms
19,840 KB
testcase_12 AC 93 ms
14,720 KB
testcase_13 AC 79 ms
12,416 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 AC 81 ms
12,160 KB
testcase_16 AC 79 ms
12,160 KB
testcase_17 AC 79 ms
12,416 KB
testcase_18 AC 121 ms
17,408 KB
testcase_19 AC 108 ms
16,000 KB
testcase_20 AC 99 ms
14,336 KB
testcase_21 AC 126 ms
17,920 KB
testcase_22 AC 102 ms
15,232 KB
testcase_23 AC 78 ms
12,160 KB
testcase_24 AC 141 ms
24,960 KB
testcase_25 AC 124 ms
18,816 KB
testcase_26 AC 87 ms
13,312 KB
testcase_27 AC 80 ms
12,160 KB
evil01.txt AC 138 ms
24,832 KB
evil02.txt AC 138 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#! ruby
# yukicoder My Practice
# author: Leonardone @ NEETSDKASU

N = gets.to_i
A = gets.split.map(&:to_i)

m = Hash.new 0

A.each do |x|
	m[x] += 1
end

puts m.values.count(1)
0