結果

問題 No.182 新規性の虜
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-11-05 17:40:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 180 ms / 5,000 ms
コード長 84 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 11,544 KB
実行使用メモリ 31,996 KB
最終ジャッジ日時 2023-10-13 02:25:00
合計ジャッジ時間 5,113 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
15,100 KB
testcase_01 AC 80 ms
15,024 KB
testcase_02 AC 79 ms
15,088 KB
testcase_03 AC 79 ms
15,060 KB
testcase_04 AC 79 ms
15,096 KB
testcase_05 AC 81 ms
15,016 KB
testcase_06 AC 78 ms
15,292 KB
testcase_07 AC 80 ms
15,216 KB
testcase_08 AC 127 ms
24,340 KB
testcase_09 AC 168 ms
24,792 KB
testcase_10 AC 154 ms
24,692 KB
testcase_11 AC 140 ms
25,016 KB
testcase_12 AC 107 ms
19,628 KB
testcase_13 AC 79 ms
15,268 KB
testcase_14 AC 79 ms
15,028 KB
testcase_15 AC 78 ms
15,308 KB
testcase_16 AC 78 ms
15,112 KB
testcase_17 AC 80 ms
15,220 KB
testcase_18 AC 127 ms
22,436 KB
testcase_19 AC 112 ms
20,752 KB
testcase_20 AC 101 ms
18,604 KB
testcase_21 AC 135 ms
21,800 KB
testcase_22 AC 109 ms
19,416 KB
testcase_23 AC 79 ms
15,012 KB
testcase_24 AC 180 ms
31,996 KB
testcase_25 AC 129 ms
22,176 KB
testcase_26 AC 89 ms
16,232 KB
testcase_27 AC 79 ms
15,228 KB
evil01.txt AC 182 ms
32,480 KB
evil02.txt AC 182 ms
32,500 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
puts gets.split.map(&:to_i).group_by(&:itself).count{|k,v|v.size == 1}
0