Submission #169621


Source Code Expand

#include <stdio.h>

int main(){
	int N, Canvass[50]={0}, i, j, k, most=0;
	char S[50][50]={NULL}, input;

	scanf("%d", &N);

	for(i=0 ; i<=N ; i++){
		gets(S[i]);

		for(j=1 ; j<=i ; j++){
			if(S[j]==S[i]){
				Canvass[j]++ ;
				break;
			}
		}
	}

	for(i=1 ; i<=N ; i++){
		if(most <= Canvass[i])	most = Canvass[i] ;
	}

	for(i=1 ; i<=N ; i++){
		if(most == Canvass[i])	break;
	}
	

	printf("%s\n", S[i+1]);

	return 0;
}

Submission Info

Submission Time
Task B - 投票
User metasequo
Language C (GCC 4.6.4)
Score 0
Code Size 455 Byte
Status WA
Exec Time 23 ms
Memory 796 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:5:2: warning: initialization makes integer from pointer without a cast [enabled by default]
./Main.c:5:2: warning: (near initialization for ‘S[0][0]’) [enabled by default]
./Main.c:7:7: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
./Main.c:10:7: warning: ignoring return value of ‘gets’, declared with attribute warn_unused_result [-Wunused-result]
In file included from /usr/include/stdio.h:934:0,
                 from ./Main.c:1:
In function ‘gets’,
    inlined from ‘main’ at ./Main.c:10:7:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:230:3: warning: call to ‘__gets_warn’ declared with attribute warning: please use fgets or getline instead, gets can't specify buffer size [enabled by default]

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 1
WA × 2
AC × 3
WA × 15
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 AC 20 ms 792 KB
case_02.txt WA 20 ms 788 KB
case_03.txt WA 19 ms 796 KB
case_04.txt WA 17 ms 788 KB
case_05.txt AC 21 ms 792 KB
case_06.txt WA 19 ms 792 KB
case_07.txt WA 19 ms 796 KB
case_08.txt WA 18 ms 788 KB
case_09.txt WA 19 ms 788 KB
case_10.txt WA 19 ms 788 KB
case_11.txt WA 18 ms 784 KB
case_12.txt WA 22 ms 792 KB
case_13.txt WA 20 ms 668 KB
case_14.txt WA 22 ms 792 KB
case_15.txt WA 23 ms 796 KB
sample_01.txt WA 17 ms 792 KB
sample_02.txt WA 17 ms 788 KB
sample_03.txt AC 19 ms 796 KB