結果

問題 No.182 新規性の虜
ユーザー あかりき
提出日時 2021-02-12 12:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,328 KB
最終ジャッジ日時 2024-07-19 06:35:12
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n=int(input())
a=list(map(int,input().split()))
a=collections.Counter(a)
a=list(a.values())
print(a.count(1))
0