結果

問題 No.182 新規性の虜
ユーザー MaxMellonMaxMellon
提出日時 2015-08-13 18:33:19
言語 Ruby
(3.4.1)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 137 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 36,332 KB
最終ジャッジ日時 2024-12-26 19:37:34
合計ジャッジ時間 6,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
11,904 KB
testcase_01 AC 109 ms
12,032 KB
testcase_02 AC 109 ms
12,032 KB
testcase_03 AC 105 ms
12,032 KB
testcase_04 AC 105 ms
12,032 KB
testcase_05 AC 107 ms
12,160 KB
testcase_06 AC 109 ms
12,032 KB
testcase_07 AC 107 ms
12,160 KB
testcase_08 AC 194 ms
24,592 KB
testcase_09 AC 250 ms
34,144 KB
testcase_10 AC 248 ms
31,940 KB
testcase_11 AC 216 ms
27,796 KB
testcase_12 AC 154 ms
18,796 KB
testcase_13 AC 107 ms
12,032 KB
testcase_14 AC 105 ms
11,904 KB
testcase_15 AC 112 ms
12,160 KB
testcase_16 AC 111 ms
12,160 KB
testcase_17 AC 110 ms
12,032 KB
testcase_18 AC 167 ms
19,432 KB
testcase_19 AC 160 ms
18,044 KB
testcase_20 AC 139 ms
15,856 KB
testcase_21 AC 172 ms
20,280 KB
testcase_22 AC 161 ms
16,856 KB
testcase_23 AC 105 ms
11,904 KB
testcase_24 AC 269 ms
36,332 KB
testcase_25 AC 156 ms
18,432 KB
testcase_26 AC 125 ms
14,276 KB
testcase_27 AC 108 ms
12,160 KB
evil01.txt AC 270 ms
37,384 KB
evil02.txt AC 266 ms
37,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets
arr = gets.chomp.split.group_by{|e| e}.values.sort_by{|e| e.length}
ans = 0
arr.each { |k| ans += 1 if k.length == 1 }
puts ans
0