1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <iostream>
#include <cstring>
using namespace std;
#include<array>
int main (){
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(NULL);
    int n;
    cin >>n;
    int wyn[n];
    for (int i=0;i<n;i++){
        wyn[i]=0;
    }
    int l;
    int wynik = 0;
    for(int i=0;i<n;i++){
        cin >> l;
        wyn[l-1]+=1;
        if(wyn[l-1]==2){

            wynik+=1;
        }
    }
    cout <<wynik;
    return 0;
}