Submission #169344


Source Code Expand

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

#define N 60

int main(void){
	int n, i, k;
	char** S=NULL;
	int* nums=NULL;
	
	scanf("%d", &n);
	
	S=malloc(sizeof(char*)*n);
	nums=(int*)malloc(sizeof(int)*n);
	
	for(i=0; i<n; i++){
		S[i]=(char*)malloc(sizeof(char)*N);
		scanf("%s", S[i]);
		nums[i]=1;
		for(k=0; k<i; k++){
			//printf(">>%d:%s, %d:%s\n", i, S[i], k, S[k]);
			if(strcmp(S[i], S[k])==0){
				printf("same!\n");
				nums[k]++;
				nums[i]=0;
				break;
			}
		}
	}
	
	int max=0, m=0;
	for(i=0; i<n; i++){
		if(max<nums[i]){
			max=nums[i];
			m=i;
		}
		//printf(">>%d\n", nums[i]);
	}
	
	if(n==1){
		printf("%s", S[0]);
	}
	else{
		printf("%s",S[m]);
	}
	
	for(i=0; i<n; i++)	free(S[i]);
	
	free(S);
	free(nums);
	return 0;
}

Submission Info

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

Compile Error

./Main.c: In function ‘main’:
./Main.c:12:7: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
./Main.c:19:8: 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 804 KB
case_02.txt WA 21 ms 800 KB
case_03.txt WA 19 ms 800 KB
case_04.txt WA 20 ms 760 KB
case_05.txt WA 20 ms 796 KB
case_06.txt WA 19 ms 796 KB
case_07.txt WA 20 ms 700 KB
case_08.txt WA 20 ms 700 KB
case_09.txt WA 20 ms 704 KB
case_10.txt WA 19 ms 796 KB
case_11.txt WA 20 ms 692 KB
case_12.txt WA 20 ms 796 KB
case_13.txt WA 20 ms 792 KB
case_14.txt WA 19 ms 696 KB
case_15.txt WA 19 ms 700 KB
sample_01.txt WA 19 ms 796 KB
sample_02.txt WA 20 ms 708 KB
sample_03.txt WA 21 ms 804 KB