結果

問題 No.182 新規性の虜
ユーザー knt3110
提出日時 2018-05-22 16:12:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,872 KB
最終ジャッジ日時 2024-06-28 15:46:08
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 TLE * 1 -- * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[int(i) for i in input().split()]
l.sort()

j=0
count=0
while l!=[]:
    while j!=len(l) and l[0]==l[j]:
        j+=1
    if j==1:
        count+=1
    l=l[j:]
    j=0

print(count)
0