結果

問題 No.182 新規性の虜
ユーザー char134217728char134217728
提出日時 2017-08-29 19:30:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 198 ms / 5,000 ms
コード長 93 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 38,996 KB
最終ジャッジ日時 2024-06-08 12:17:31
合計ジャッジ時間 4,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 76 ms
12,160 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 76 ms
12,032 KB
testcase_05 AC 73 ms
12,032 KB
testcase_06 AC 75 ms
12,032 KB
testcase_07 AC 71 ms
12,160 KB
testcase_08 AC 130 ms
25,792 KB
testcase_09 AC 172 ms
36,596 KB
testcase_10 AC 161 ms
34,188 KB
testcase_11 AC 152 ms
27,564 KB
testcase_12 AC 105 ms
17,896 KB
testcase_13 AC 72 ms
12,160 KB
testcase_14 AC 71 ms
12,160 KB
testcase_15 AC 74 ms
12,160 KB
testcase_16 AC 73 ms
12,032 KB
testcase_17 AC 72 ms
12,032 KB
testcase_18 AC 115 ms
17,664 KB
testcase_19 AC 106 ms
16,460 KB
testcase_20 AC 95 ms
15,460 KB
testcase_21 AC 118 ms
18,328 KB
testcase_22 AC 98 ms
15,660 KB
testcase_23 AC 72 ms
12,160 KB
testcase_24 AC 198 ms
38,996 KB
testcase_25 AC 123 ms
17,664 KB
testcase_26 AC 96 ms
14,792 KB
testcase_27 AC 72 ms
12,160 KB
evil01.txt AC 182 ms
39,472 KB
evil02.txt AC 182 ms
39,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
h = Hash.new{0}
gets.split.each do |a|
  h[a] += 1
end
p h.select{|k,v| v==1}.to_a.count
0