Submission #169877
Source Code Expand
Copy
#include <iostream> #include <string> using namespace std; int main(void){ int N,count[50],result = 0; string name[50]; cin >> N; for(int i = 0;i < N;i++){ cin >> name[i]; } for(int i = 0;i < N;i++){ for(int j = 0;j < N;j++){ if(name[i] == name[j]){ count[i]++; } } } for(int i = 0;i < N;i++){ if(count[i] > result){ result = count[i]; } } cout << name[result] << "\n"; return 0; }
Submission Info
Submission Time | |
---|---|
Task | B - 投票 |
User | jajkeqos |
Language | C++ (G++ 4.6.4) |
Score | 0 |
Code Size | 437 Byte |
Status | RE |
Exec Time | 246 ms |
Memory | 912 KB |
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 | RE | 230 ms | 792 KB |
case_02.txt | RE | 230 ms | 792 KB |
case_03.txt | RE | 232 ms | 792 KB |
case_04.txt | RE | 231 ms | 804 KB |
case_05.txt | RE | 230 ms | 744 KB |
case_06.txt | RE | 233 ms | 872 KB |
case_07.txt | RE | 238 ms | 796 KB |
case_08.txt | RE | 230 ms | 792 KB |
case_09.txt | RE | 233 ms | 792 KB |
case_10.txt | RE | 237 ms | 788 KB |
case_11.txt | RE | 246 ms | 912 KB |
case_12.txt | RE | 230 ms | 792 KB |
case_13.txt | RE | 232 ms | 792 KB |
case_14.txt | RE | 230 ms | 788 KB |
case_15.txt | RE | 230 ms | 788 KB |
sample_01.txt | RE | 230 ms | 712 KB |
sample_02.txt | RE | 230 ms | 796 KB |
sample_03.txt | RE | 230 ms | 792 KB |