結果

問題 No.182 新規性の虜
ユーザー frnfntsfrnfnts
提出日時 2016-08-25 15:56:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 204 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 6,512 KB
実行使用メモリ 19,924 KB
最終ジャッジ日時 2023-08-27 12:42:19
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,408 KB
testcase_01 AC 13 ms
6,420 KB
testcase_02 AC 13 ms
6,416 KB
testcase_03 AC 14 ms
6,428 KB
testcase_04 AC 13 ms
6,384 KB
testcase_05 AC 14 ms
6,484 KB
testcase_06 AC 13 ms
6,440 KB
testcase_07 AC 13 ms
6,332 KB
testcase_08 AC 71 ms
12,200 KB
testcase_09 AC 114 ms
13,524 KB
testcase_10 AC 100 ms
12,760 KB
testcase_11 AC 82 ms
12,512 KB
testcase_12 AC 43 ms
11,348 KB
testcase_13 AC 13 ms
6,444 KB
testcase_14 AC 14 ms
6,576 KB
testcase_15 AC 13 ms
6,492 KB
testcase_16 AC 13 ms
6,348 KB
testcase_17 AC 13 ms
6,328 KB
testcase_18 AC 63 ms
12,616 KB
testcase_19 AC 50 ms
10,624 KB
testcase_20 AC 38 ms
9,208 KB
testcase_21 AC 71 ms
13,440 KB
testcase_22 AC 43 ms
9,688 KB
testcase_23 AC 14 ms
6,424 KB
testcase_24 AC 108 ms
19,924 KB
testcase_25 AC 61 ms
7,716 KB
testcase_26 AC 26 ms
7,772 KB
testcase_27 AC 13 ms
6,404 KB
evil01.txt AC 119 ms
19,940 KB
evil02.txt AC 128 ms
19,944 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