結果

問題 No.182 新規性の虜
ユーザー JunOnumaJunOnuma
提出日時 2017-06-08 16:48:28
言語 Python2
(2.7.18)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 6,712 KB
実行使用メモリ 19,860 KB
最終ジャッジ日時 2023-08-27 15:28:05
合計ジャッジ時間 3,300 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,440 KB
testcase_01 AC 12 ms
6,428 KB
testcase_02 AC 11 ms
6,204 KB
testcase_03 AC 12 ms
6,412 KB
testcase_04 AC 11 ms
6,236 KB
testcase_05 AC 11 ms
6,208 KB
testcase_06 AC 11 ms
6,292 KB
testcase_07 AC 12 ms
6,196 KB
testcase_08 AC 58 ms
12,084 KB
testcase_09 AC 86 ms
13,400 KB
testcase_10 AC 76 ms
12,728 KB
testcase_11 AC 67 ms
12,376 KB
testcase_12 AC 37 ms
11,112 KB
testcase_13 AC 12 ms
6,348 KB
testcase_14 AC 12 ms
6,444 KB
testcase_15 AC 12 ms
6,240 KB
testcase_16 AC 11 ms
6,284 KB
testcase_17 AC 12 ms
6,348 KB
testcase_18 AC 63 ms
12,660 KB
testcase_19 AC 48 ms
10,656 KB
testcase_20 AC 33 ms
8,908 KB
testcase_21 AC 69 ms
13,424 KB
testcase_22 AC 40 ms
9,568 KB
testcase_23 AC 11 ms
6,456 KB
testcase_24 AC 89 ms
19,860 KB
testcase_25 AC 64 ms
7,724 KB
testcase_26 AC 21 ms
7,704 KB
testcase_27 AC 11 ms
6,368 KB
evil01.txt AC 92 ms
19,664 KB
evil02.txt AC 102 ms
19,788 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