結果

問題 No.1285 ゴミ捨て
ユーザー Yug_min_nullYug_min_null
提出日時 2021-09-12 13:54:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 3,567 ms
コンパイル使用メモリ 231,496 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 02:52:41
合計ジャッジ時間 7,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 291 ms
6,944 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 120 ms
6,944 KB
testcase_10 AC 259 ms
6,944 KB
testcase_11 AC 228 ms
6,940 KB
testcase_12 AC 165 ms
6,940 KB
testcase_13 AC 163 ms
6,944 KB
testcase_14 AC 279 ms
6,940 KB
testcase_15 AC 193 ms
6,944 KB
testcase_16 AC 50 ms
6,944 KB
testcase_17 AC 51 ms
6,940 KB
testcase_18 AC 46 ms
6,940 KB
testcase_19 AC 108 ms
6,940 KB
testcase_20 AC 45 ms
6,944 KB
testcase_21 AC 67 ms
6,940 KB
testcase_22 AC 310 ms
6,940 KB
testcase_23 AC 302 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;

int main() {
  int N; cin >> N;
  vector<int> S(N);
  for(int i = 0; i < N; i++) cin >> S[i];
  sort(S.begin(), S.end());
  int ans = 1;
  for(int i = 0; i+1 < N; i++){
    if(S[i]+1 == S[i+1]){
        ans++;
        break;
    }
  }
  cout << ans << endl;
}

0