結果

問題 No.1285 ゴミ捨て
ユーザー FUN_era1FUN_era1
提出日時 2020-11-13 21:34:14
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 202,624 KB
最終ジャッジ日時 2025-01-15 22:38:28
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//#include <atcoder/all>

#define INF 1e9
#define rep(i,n)for(int i=0;(i)<(int)(n);i++)
#define REP(i,a,b)for(int i=(int)(a);(i)<=(int)(b);i++)
#define ALL(a)  (a).begin(),(a).end()
#define chmax(a, b) a = max(a, b)
#define chmin(a, b) a = min(a, b)
#define pb push_back
#define fi first
#define se second
#define sz(x) ((int)x.size())

using namespace std;
//using namespace atcoder;
using ld = long double;
using ll = long long;
using P = pair<ll, ll>;
using Graph = vector<vector<int>>;

const ll ZER = 0;
const ll MOD = 1e9 + 7;


int main(){
    // std::cin.tie(0);
    // std::ios::sync_with_stdio(false);

    int n;
    cin >> n;
    vector<ll> a(n);
    rep(i, n)cin >> a[i];
    sort(ALL(a), greater<>());
    queue<ll> q;
    rep(i, n){
        q.push(a[i]);
        if(a[i] + 1 < q.front())q.pop();
    }
    cout << sz(q) << endl;
}
0