結果

問題 No.182 新規性の虜
ユーザー osa_kosa_k
提出日時 2015-07-27 00:39:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 151 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-06-08 03:10:50
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 76 ms
12,288 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 79 ms
12,032 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 74 ms
12,032 KB
testcase_08 AC 126 ms
20,096 KB
testcase_09 AC 162 ms
27,008 KB
testcase_10 AC 155 ms
23,936 KB
testcase_11 AC 135 ms
21,376 KB
testcase_12 AC 106 ms
15,872 KB
testcase_13 AC 82 ms
12,288 KB
testcase_14 AC 77 ms
12,160 KB
testcase_15 AC 77 ms
12,288 KB
testcase_16 AC 79 ms
12,160 KB
testcase_17 AC 77 ms
12,160 KB
testcase_18 AC 127 ms
17,920 KB
testcase_19 AC 114 ms
16,384 KB
testcase_20 AC 98 ms
14,976 KB
testcase_21 AC 135 ms
18,432 KB
testcase_22 AC 107 ms
15,616 KB
testcase_23 AC 82 ms
12,288 KB
testcase_24 AC 174 ms
28,032 KB
testcase_25 AC 131 ms
18,432 KB
testcase_26 AC 88 ms
13,696 KB
testcase_27 AC 75 ms
12,032 KB
evil01.txt AC 163 ms
28,672 KB
evil02.txt AC 167 ms
28,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

#!/usr/bin/env ruby

n = gets.to_i
tbl = Hash.new
gets.chomp.split.map(&:to_i).each do |i|
  tbl[i] ||= 0
  tbl[i] += 1
end
puts tbl.count{|_,v| v==1}
0