Submission #1692324


Source Code Expand

#include<cstdio>
#include<algorithm>
using namespace std;
inline char tc(void){
	static char fl[10000],*A=fl,*B=fl;
	return A==B&&(B=(A=fl)+fread(fl,1,10000,stdin),A==B)?EOF:*A++;
}
inline int read(void){
	int a=0;static char c;
	while((c=tc())<'0'||c>'9');
	while(c>='0'&&c<='9')a=a*10+c-'0',c=tc();
	return a;
}
int n,a[100005],pre,nxt,ans;
int main(void){
	register int i;
	n=read();
	for(i=1;i<=n;++i)
		++a[read()];
	pre=0,nxt=a[1];
	for(i=0;i<=1e5;pre=a[i],++i,nxt=a[i+1])
		if(a[i]+pre+nxt>ans)ans=a[i]+pre+nxt;
	printf("%d",ans);
	return 0;
}

Submission Info

Submission Time
Task C - Together
User Axcosin
Language C++14 (GCC 5.4.1)
Score 300
Code Size 574 Byte
Status AC
Exec Time 2 ms
Memory 512 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 9
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 1 ms 128 KB
0_001.txt AC 1 ms 128 KB
0_002.txt AC 1 ms 128 KB
1_003.txt AC 2 ms 128 KB
1_004.txt AC 1 ms 128 KB
1_005.txt AC 2 ms 128 KB
1_006.txt AC 2 ms 128 KB
1_007.txt AC 2 ms 128 KB
1_008.txt AC 2 ms 512 KB