結果

問題 No.182 新規性の虜
ユーザー cuptea11139999
提出日時 2021-06-08 23:29:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 162 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-11-27 06:37:46
合計ジャッジ時間 2,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n = int(input())
a= list(map(int,input().split()))
ans = 0
for i in collections.Counter(a).values():
    if i == 1:
        ans += 1
print(ans)
0