結果

問題 No.1285 ゴミ捨て
ユーザー Yug_min_nullYug_min_null
提出日時 2021-09-12 13:53:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 3,981 ms
コンパイル使用メモリ 227,124 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-06 08:05:28
合計ジャッジ時間 8,255 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 WA -
testcase_08 AC 7 ms
4,376 KB
testcase_09 AC 84 ms
4,380 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 36 ms
4,380 KB
testcase_17 AC 36 ms
4,380 KB
testcase_18 AC 32 ms
4,380 KB
testcase_19 WA -
testcase_20 AC 30 ms
4,376 KB
testcase_21 AC 46 ms
4,380 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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++;
  }
  cout << ans << endl;
}

0