結果

問題 No.182 新規性の虜
ユーザー steek79
提出日時 2015-10-13 11:41:19
言語 Python2
(2.7.18)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 19,680 KB
最終ジャッジ日時 2024-12-26 19:48:40
合計ジャッジ時間 2,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
inp = map(int, raw_input().split())

dict = {}
for n in inp:
    if n not in dict:
        dict[n] = 1
    else:
        dict[n] += 1

print dict.values().count(1)
0