Submission #1350557


Source Code Expand

#include<cstdio>
#include<functional>
#include<algorithm>
using namespace std;
int main(void)
{
	int n,i,a[100],cnt,x,iro[9],mx,mn;
	scanf("%d",&n);
	for(i=0;i<9;i++)	iro[i]=0;
	for(i=0;i<n;i++)	{
		scanf("%d",&a[i]);
		x=a[i]/400;
		if(x>8)	x=8;
		iro[x]++;
	}
	cnt=0;
	for(i=0;i<8;i++)	{
		if(iro[i]!=0)	cnt++;
	}
	mn=cnt;
	if(mn==0)	mn=1;
	mx=cnt+iro[8];
	printf("%d %d\n",mn,mx);
	return 0;
}
	

Submission Info

Submission Time
Task C - Colorful Leaderboard
User laf2
Language C++14 (GCC 5.4.1)
Score 300
Code Size 423 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

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

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 8
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All in1.txt, in2.txt, in3.txt, in4.txt, in5.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
in1.txt AC 1 ms 128 KB
in2.txt AC 1 ms 128 KB
in3.txt AC 1 ms 128 KB
in4.txt AC 1 ms 128 KB
in5.txt AC 1 ms 128 KB
s1.txt AC 1 ms 128 KB
s2.txt AC 1 ms 128 KB
s3.txt AC 1 ms 128 KB