結果

問題 No.182 新規性の虜
ユーザー teio
提出日時 2020-07-26 15:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 97,792 KB
最終ジャッジ日時 2024-06-28 16:31:53
合計ジャッジ時間 3,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
As = input().split()
d = {}
c = {}
for A in As:
    if A in c:
        continue
    if A in d:
        del d[A]
        c[A] = None
    else:
        d[A] = None
print(len(d))
0