Submission #1594697


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double 
#define vpi vector<pair <int, int> >
#define vi vector<int>
#define vl vector<ll>
#define vpl vector<pair<ll, ll> >
#define pb push_back
#define mp make_pair
#define all(p) (p).begin(), (p).end()
#define fi first
#define se second
#define mem(a) memset((a), 0 , sizeof((a)))
#define mod 1e9+7
#define inf 100000000007
#define N 1000005
int isp[N] = {};

int main(){
	ios_base::sync_with_stdio(NULL),cin.tie(NULL),cout.tie(NULL);
	int n, ma=0, a;
	mem(isp);
	cin >> n;
	for (int i = 0; i < n; ++i) {
		cin >> a;
		isp[a]++;
		ma = max(ma, a);
	}

	// for(int i=0;i<=ma;++i){
	// 	cout<<"isp["<<i<<"] : "<<isp[i]<<"\n";
	// }

	int ans = 0;
	for (int i = 0; i <= ma-2; ++i) {
		ans = max(ans, (isp[i] + isp[i+1] + isp[i+2]));
		//cout<<ans<<"\n";
	}
	cout << ans << "\n";

	return 0;
}

Submission Info

Submission Time
Task C - Together
User GodKira
Language C++14 (GCC 5.4.1)
Score 0
Code Size 918 Byte
Status WA
Exec Time 11 ms
Memory 4224 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 3
AC × 8
WA × 1
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt
Case Name Status Exec Time Memory
0_000.txt AC 3 ms 4224 KB
0_001.txt AC 3 ms 4224 KB
0_002.txt AC 3 ms 4224 KB
1_003.txt AC 3 ms 4224 KB
1_004.txt WA 9 ms 4224 KB
1_005.txt AC 11 ms 4224 KB
1_006.txt AC 11 ms 4224 KB
1_007.txt AC 11 ms 4224 KB
1_008.txt AC 11 ms 4224 KB