Submission #169790
Source Code Expand
Copy
#include <stdio.h> #include <string.h> int main(){ int N=0, Canvass[50]={0}, i, j, k, most=0; char S[50][50]={NULL}, input; while(N==0) scanf("%d", &N); for(i=0 ; i<N ; i++){ scanf("%s",S[i]); j=0; for(j=0 ; j<i ; j++){ if(!strcmp(S[i], S[j])) Canvass[j]++; } } for(i=0 ; i<N ; i++){ if(most < Canvass[i]) most = Canvass[i] ; } for(i=0 ; i<N ; i++){ if(most == Canvass[i]){ printf("%s\n", S[i]); break; } } return 0; }
Submission Info
Submission Time | |
---|---|
Task | B - 投票 |
User | metasequo |
Language | C (GCC 4.6.4) |
Score | 0 |
Code Size | 493 Byte |
Status | WA |
Exec Time | 25 ms |
Memory | 908 KB |
Compile Error
./Main.c: In function ‘main’: ./Main.c:6:2: warning: initialization makes integer from pointer without a cast [enabled by default] ./Main.c:6:2: warning: (near initialization for ‘S[0][0]’) [enabled by default] ./Main.c:8:19: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result] ./Main.c:11: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 |
|
|
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 | 24 ms | 828 KB |
case_02.txt | AC | 24 ms | 820 KB |
case_03.txt | AC | 23 ms | 816 KB |
case_04.txt | AC | 21 ms | 812 KB |
case_05.txt | AC | 23 ms | 776 KB |
case_06.txt | WA | 24 ms | 820 KB |
case_07.txt | AC | 25 ms | 784 KB |
case_08.txt | AC | 24 ms | 824 KB |
case_09.txt | AC | 23 ms | 768 KB |
case_10.txt | AC | 21 ms | 808 KB |
case_11.txt | AC | 24 ms | 796 KB |
case_12.txt | AC | 24 ms | 908 KB |
case_13.txt | WA | 24 ms | 820 KB |
case_14.txt | AC | 21 ms | 812 KB |
case_15.txt | AC | 24 ms | 824 KB |
sample_01.txt | AC | 25 ms | 788 KB |
sample_02.txt | AC | 25 ms | 812 KB |
sample_03.txt | AC | 24 ms | 824 KB |