結果

問題 No.1285 ゴミ捨て
ユーザー 0w10w1
提出日時 2020-11-13 21:29:55
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 197,692 KB
最終ジャッジ日時 2025-01-15 22:35:51
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);

  int N; { cin >> N; }

  vector<int> A(N); {
    for (int i = 0; i < N; ++i) cin >> A[i];
    sort(A.begin(), A.end());
  }

  int res = 0;
  for (int i = 0; i < N; ) {
    ++res;
    int j = i + 1;
    while (j < N && A[j - 1] + 1 < A[j]) ++j;
    i = j;
  }

  cout << min(2, res) << endl;
}

0