結果

問題 No.182 新規性の虜
ユーザー gr1msl3y
提出日時 2021-11-03 19:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,180 KB
最終ジャッジ日時 2024-10-13 10:55:13
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N=int(input())
A=list(map(int,input().split()))
C=Counter(A)
ans=0
for a in C:
    if C[a]<2:
        ans+=1
print(ans)
0