Submission #169245
Source Code Expand
Copy
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <iostream> #include <vector> #include <string> #include <algorithm> #include <map> using namespace std; int main(){ int n; scanf("%d",&n); char s[51][51]; int a[51]={0}; int m=0; char str[51][51]; for(int i=0;i<n;i++){ scanf("%s",s[i]); for(int j=0;j<=i;j++){ if(i==j){ strcpy(str[m],s[i]); a[m++]++; } else if(!strcmp(s[i],s[j]))a[j]++; } } int mx=0,mxi=0; for(int i=0;i<m;i++){ if(a[i]>mx){ mx=a[i]; mxi=i; } } printf("%s\n",str[mxi]); return 0; }
Submission Info
Submission Time | |
---|---|
Task | B - 投票 |
User | rikku |
Language | C++ (G++ 4.6.4) |
Score | 100 |
Code Size | 625 Byte |
Status | AC |
Exec Time | 28 ms |
Memory | 928 KB |
Compile Error
./Main.cpp: In function ‘int main()’: ./Main.cpp:16:16: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] ./Main.cpp:22:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 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 | 22 ms | 804 KB |
case_02.txt | AC | 23 ms | 736 KB |
case_03.txt | AC | 22 ms | 928 KB |
case_04.txt | AC | 22 ms | 804 KB |
case_05.txt | AC | 23 ms | 812 KB |
case_06.txt | AC | 21 ms | 924 KB |
case_07.txt | AC | 21 ms | 920 KB |
case_08.txt | AC | 22 ms | 920 KB |
case_09.txt | AC | 28 ms | 920 KB |
case_10.txt | AC | 21 ms | 928 KB |
case_11.txt | AC | 20 ms | 928 KB |
case_12.txt | AC | 22 ms | 924 KB |
case_13.txt | AC | 22 ms | 804 KB |
case_14.txt | AC | 21 ms | 796 KB |
case_15.txt | AC | 22 ms | 796 KB |
sample_01.txt | AC | 24 ms | 804 KB |
sample_02.txt | AC | 22 ms | 804 KB |
sample_03.txt | AC | 21 ms | 800 KB |