Submission #169026


Source Code Expand

#include<stdio.h>
#include<stdlib.h>
#include<string.h>


int main(void){
 int n,i,j;
 char name[50][50];
 char buff[50];
 int num = 0;
 int flag = 0;
 int count[50];
 int max = 0;

 for(i=0;i<50;i++){
	 count[i]=0;
 }

 scanf("%d",&n);

 for(i=0;i<n;i++){
    scanf("%s",buff);
	flag = 0;
	for(j=0;j<num;j++){
		if(strcmp(name[j],buff)==0){
			count[i]++;
			flag = 1;
			break;
		}
		if(flag == 0){
			strcpy(name[num+1],buff);
		}
	}
 }

 for(i=0;i<num;i++){
	 if(max < count [i]){
	max = count[i];
	 }
 }

 printf("%s\n",name[max]);


 return 0;
}

Submission Info

Submission Time
Task B - 投票
User suzumebi
Language C (GCC 4.6.4)
Score 0
Code Size 596 Byte
Status WA
Exec Time 22 ms
Memory 804 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:19:7: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
./Main.c:22:10: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
WA × 3
WA × 18
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All sample_01.txt, sample_02.txt, sample_03.txt, case_01.txt, case_02.txt, case_03.txt, case_04.txt, case_05.txt, case_06.txt, case_07.txt, case_08.txt, case_09.txt, case_10.txt, case_11.txt, case_12.txt, case_13.txt, case_14.txt, case_15.txt
Case Name Status Exec Time Memory
case_01.txt WA 19 ms 800 KB
case_02.txt WA 18 ms 792 KB
case_03.txt WA 20 ms 804 KB
case_04.txt WA 19 ms 800 KB
case_05.txt WA 22 ms 796 KB
case_06.txt WA 19 ms 800 KB
case_07.txt WA 20 ms 708 KB
case_08.txt WA 20 ms 704 KB
case_09.txt WA 20 ms 712 KB
case_10.txt WA 18 ms 704 KB
case_11.txt WA 19 ms 804 KB
case_12.txt WA 19 ms 796 KB
case_13.txt WA 19 ms 704 KB
case_14.txt WA 20 ms 704 KB
case_15.txt WA 20 ms 800 KB
sample_01.txt WA 19 ms 804 KB
sample_02.txt WA 18 ms 800 KB
sample_03.txt WA 19 ms 800 KB