#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include #define rep(i,n) for(int i=0;i<(n);i++) #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define sz(x) ((int)(x).size()) #define pb push_back using ll = long long; using namespace std; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b> N; multiset ms; rep(i,N){ int x; cin >> x; ms.insert(x); } int ans = 0; while(!ms.empty()){ int now = -1; while(ms.lower_bound(now+2)!=ms.end()){ now = *ms.lower_bound(now+2); ms.erase(ms.find(now)); } ans++; } cout << ans << endl; return 0; }