Submission #3215933


Source Code Expand

#include <stdio.h>
int main(){
  char s[51][50];
  int i,j,k[50],n,m;
  scanf("%d",&n);
  for(i=0;i<n;i++){scanf("%s",s[i]);}
  for(i=0;i<n;i++){
                  for(j=0;j<i;j++){if(s[j]==s[i]) k[j]++;}
                  }
  n=k[0];
  for(j=1;j<i;j++){
    if(n<k[j]){n=k[j];m=j;}
  }
  printf("%s\n",s[m]);
}

Submission Info

Submission Time
Task B - 投票
User Shiro_S
Language C (GCC 5.4.1)
Score 0
Code Size 325 Byte
Status WA
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:5:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d",&n);
   ^
./Main.c:6:20: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   for(i=0;i<n;i++){scanf("%s",s[i]);}
                    ^

Judge Result

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