結果

問題 No.182 新規性の虜
ユーザー frnfntsfrnfnts
提出日時 2016-08-25 15:56:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 204 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 20,216 KB
最終ジャッジ日時 2024-12-27 08:01:38
合計ジャッジ時間 3,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,656 KB
testcase_01 AC 17 ms
6,528 KB
testcase_02 AC 15 ms
6,400 KB
testcase_03 AC 16 ms
6,528 KB
testcase_04 AC 16 ms
6,656 KB
testcase_05 AC 16 ms
6,528 KB
testcase_06 AC 16 ms
6,528 KB
testcase_07 AC 16 ms
6,528 KB
testcase_08 AC 93 ms
12,520 KB
testcase_09 AC 136 ms
13,784 KB
testcase_10 AC 123 ms
13,208 KB
testcase_11 AC 106 ms
12,800 KB
testcase_12 AC 55 ms
11,700 KB
testcase_13 AC 17 ms
6,528 KB
testcase_14 AC 18 ms
6,656 KB
testcase_15 AC 16 ms
6,656 KB
testcase_16 AC 17 ms
6,528 KB
testcase_17 AC 17 ms
6,528 KB
testcase_18 AC 81 ms
12,960 KB
testcase_19 AC 62 ms
11,028 KB
testcase_20 AC 42 ms
9,088 KB
testcase_21 AC 84 ms
13,680 KB
testcase_22 AC 52 ms
9,968 KB
testcase_23 AC 16 ms
6,528 KB
testcase_24 AC 133 ms
20,216 KB
testcase_25 AC 74 ms
8,064 KB
testcase_26 AC 30 ms
8,116 KB
testcase_27 AC 16 ms
6,528 KB
evil01.txt AC 151 ms
20,088 KB
evil02.txt AC 160 ms
20,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Here your code !
from collections import defaultdict
n = input()
d = defaultdict(int)
l = map(int,raw_input().split())

for t in l:
    d[t] +=1
c =0
for i in d:
    if d[i] == 1:
        c += 1
print c
0