結果

問題 No.182 新規性の虜
ユーザー JunOnumaJunOnuma
提出日時 2017-06-08 16:48:28
言語 Python2
(2.7.18)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 20,152 KB
最終ジャッジ日時 2024-12-27 16:19:11
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,400 KB
testcase_01 AC 15 ms
6,400 KB
testcase_02 AC 14 ms
6,400 KB
testcase_03 AC 17 ms
6,528 KB
testcase_04 AC 16 ms
6,400 KB
testcase_05 AC 15 ms
6,528 KB
testcase_06 AC 14 ms
6,528 KB
testcase_07 AC 13 ms
6,400 KB
testcase_08 AC 76 ms
12,460 KB
testcase_09 AC 111 ms
13,712 KB
testcase_10 AC 98 ms
13,140 KB
testcase_11 AC 87 ms
12,864 KB
testcase_12 AC 43 ms
11,764 KB
testcase_13 AC 14 ms
6,400 KB
testcase_14 AC 15 ms
6,400 KB
testcase_15 AC 15 ms
6,400 KB
testcase_16 AC 13 ms
6,528 KB
testcase_17 AC 15 ms
6,400 KB
testcase_18 AC 86 ms
12,876 KB
testcase_19 AC 68 ms
10,952 KB
testcase_20 AC 49 ms
9,216 KB
testcase_21 AC 92 ms
13,608 KB
testcase_22 AC 56 ms
9,856 KB
testcase_23 AC 14 ms
6,400 KB
testcase_24 AC 114 ms
20,152 KB
testcase_25 AC 83 ms
8,176 KB
testcase_26 AC 28 ms
8,188 KB
testcase_27 AC 12 ms
6,400 KB
evil01.txt AC 121 ms
20,152 KB
evil02.txt AC 130 ms
20,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(raw_input())
c = Counter(map(int, raw_input().split()))
ct = 0
for i in c.values():
    if i == 1:
        ct += 1
print ct
0