結果

問題 No.182 新規性の虜
ユーザー roiti46
提出日時 2015-04-16 23:22:36
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 192 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 14,992 KB
最終ジャッジ日時 2024-07-04 15:02:43
合計ジャッジ時間 2,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14 RE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
A = map(int, raw_input().split())
histo = [0]*100001
for a in A:
    histo[a-1] += 1

ans = 0
for i in xrange(100001):
    if histo[i] == 1:
        ans += 1
print ans    
0