Submission #1371671


Source Code Expand

#include <stdio.h>
#include <string.h>
 
int main(void) {
	int a=0, b=0, c=0, tmp=0, tmp0=0, str0[50];
	char str[50][100], str1[100];
	scanf("%d",&a);
	while (c<a) {
		str0[c]=0;
		scanf("%s", str[c]);
		c++;
	}
	c=0;
	while (c<a) {
		b=0;
		while (b<a) {
			if (strcmp(str[c], str[b])==0) {
				// printf("%s, %d\n", str[c], str0[c]);
				str0[c]++;
			}
			b++;
		}
		c++;
	}
	c=0, tmp=0;
	while (c<a) {
		if (str0[tmp]<str0[c]) tmp=c;
		c++;
	}
	printf("%s\n", str[tmp]);
	return 0;
}

Submission Info

Submission Time
Task B - 投票
User asid_brac
Language C (GCC 5.4.1)
Score 100
Code Size 518 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:7:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&a);
  ^
./Main.c:10:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s", str[c]);
   ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 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 AC 1 ms 128 KB
case_02.txt AC 1 ms 128 KB
case_03.txt AC 1 ms 128 KB
case_04.txt AC 1 ms 128 KB
case_05.txt AC 1 ms 128 KB
case_06.txt AC 1 ms 128 KB
case_07.txt AC 1 ms 128 KB
case_08.txt AC 1 ms 128 KB
case_09.txt AC 1 ms 128 KB
case_10.txt AC 1 ms 128 KB
case_11.txt AC 1 ms 128 KB
case_12.txt AC 1 ms 128 KB
case_13.txt AC 1 ms 128 KB
case_14.txt AC 1 ms 128 KB
case_15.txt AC 1 ms 128 KB
sample_01.txt AC 1 ms 128 KB
sample_02.txt AC 1 ms 128 KB
sample_03.txt AC 1 ms 128 KB