Submission #1605343


Source Code Expand

#include <stdio.h>
 
#define REP(i,n) for(unsigned long long i=0;i<(n);i++)
#define FOR(i,a,b) for(unsigned long long i=(a);i<(b);i++)
 
template<class T>
T maxs(T &a, const T &b){
	if(a < b) a = b;
	return a;
}
 
unsigned long long n, table[110000], max, ans;
 
int main(void){
	scanf("%llu", &n);
	REP(i, n){
		unsigned long long a;
		scanf("%llu", &a);
		table[a]++;
		table[a + 1]++;
		table[a + 2]++;
		maxs(max, a);
	}
	REP(i, max + 1) maxs(ans, table[i]);
	printf("%llu\n", ans);
}

Submission Info

Submission Time
Task C - Together
User toga57
Language C++14 (GCC 5.4.1)
Score 300
Code Size 513 Byte
Status AC
Exec Time 10 ms
Memory 896 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:15:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%llu", &n);
                   ^
./Main.cpp:18:20: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%llu", &a);
                    ^

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 1 ms 128 KB
1_004.txt AC 8 ms 128 KB
1_005.txt AC 10 ms 128 KB
1_006.txt AC 10 ms 128 KB
1_007.txt AC 10 ms 128 KB
1_008.txt AC 10 ms 896 KB