結果

問題 No.182 新規性の虜
ユーザー yumechi
提出日時 2016-01-19 08:15:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 160 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,676 KB
最終ジャッジ日時 2024-12-27 00:05:22
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

num = int(input())
appeared = {}
for elem in input().split():
    appeared[elem] = appeared.get(elem, 0) + 1
print(sum([i for i in appeared.values() if i < 2]))
0