結果
| 問題 | 
                            No.1285 ゴミ捨て
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-11-25 07:24:17 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 368 bytes | 
| コンパイル時間 | 2,054 ms | 
| コンパイル使用メモリ | 197,624 KB | 
| 最終ジャッジ日時 | 2025-01-16 05:36:26 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 WA * 1 | 
| other | AC * 13 WA * 9 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main(){
	cin.tie(nullptr);
	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());
	bool ok=true;
	for(int i=0;i+1<n;i++){
		if(a[i]+1<a[i+1])ok=false;
	}
	if(ok){
		printf("1\n");
	}
	else{
		printf("2\n");
	}
}