結果

問題 No.182 新規性の虜
ユーザー Lo_OTLo_OT
提出日時 2018-03-12 22:12:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 35,776 KB
最終ジャッジ日時 2024-11-14 13:54:29
合計ジャッジ時間 4,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 87 ms
12,032 KB
testcase_04 AC 87 ms
12,288 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 85 ms
12,160 KB
testcase_08 AC 145 ms
24,256 KB
testcase_09 AC 179 ms
34,064 KB
testcase_10 AC 167 ms
32,304 KB
testcase_11 AC 147 ms
25,588 KB
testcase_12 AC 109 ms
17,924 KB
testcase_13 AC 83 ms
12,032 KB
testcase_14 AC 85 ms
12,032 KB
testcase_15 AC 84 ms
12,032 KB
testcase_16 AC 86 ms
12,032 KB
testcase_17 AC 88 ms
12,160 KB
testcase_18 AC 140 ms
17,928 KB
testcase_19 AC 131 ms
16,652 KB
testcase_20 AC 112 ms
15,476 KB
testcase_21 AC 144 ms
18,744 KB
testcase_22 AC 114 ms
16,084 KB
testcase_23 AC 87 ms
12,032 KB
testcase_24 AC 196 ms
35,776 KB
testcase_25 AC 134 ms
17,664 KB
testcase_26 AC 99 ms
14,256 KB
testcase_27 AC 86 ms
12,032 KB
evil01.txt AC 198 ms
36,696 KB
evil02.txt AC 200 ms
36,476 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets;
a = Hash.new(0)
gets.chomp.split.each do |str|
    if a.has_key? str
        a[str] += 1
    else
        a[str] = 1
    end
end
puts a.select {|k,v| v == 1}.size
0