Submission #168788


Source Code Expand

#include <iostream>
#include <vector>
#include <stack>
#include <queue>
#include <algorithm>
#include <string>
#include <bitset>
#include <map>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <sstream>
#include <fstream>
#include <tuple>
#include <set>
#include <functional> 
#include <string.h>
//#include <assert.h>
//#include <typeinfo.h>
#include <time.h>

#define X first
#define Y second
#define MP make_pair
#define MT make_tuple
#define FOR(i, n) for(int (i) = 0; (i) < (n); (i)++)
#define REP(i, a, n) for(int (i) = (a); (i) < (n); (i)++)
typedef long long ll;
typedef std::pair<int, int> pii;
typedef std::pair<ll, ll > pll;
using namespace std;

const int INIT_SIZE_MAX = (1 << 29) + 10;
const int INIT_SIZE_MIN = -(1 << 29) - 10;
const int INIT_SIZE = 0;
const int MAX = 5;
const int ANS_SIZE = 100;
const double PI = 3.1415926535897932384;

template<class T, class U>
void convert(T &t, U &u){
	stringstream ss;
	ss << t;
	ss >> u;
}

int main(){
	int n; cin >> n;
	map<string, int> tb;
	FOR(i, n){
		string s; cin >> s;
		tb[s]++;
	}

	int maxc = -1;
	string ans;
	for (auto i:tb){
		if (i.second > maxc){
			maxc = i.second;
			ans = i.first;
		}
	}

	cout << ans << endl;
}

Submission Info

Submission Time
Task B - 投票
User keny30827
Language C++11 (GCC 4.8.1)
Score 100
Code Size 1268 Byte
Status AC
Exec Time 25 ms
Memory 932 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 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 AC 21 ms 796 KB
case_02.txt AC 21 ms 792 KB
case_03.txt AC 22 ms 932 KB
case_04.txt AC 21 ms 792 KB
case_05.txt AC 20 ms 912 KB
case_06.txt AC 21 ms 812 KB
case_07.txt AC 22 ms 928 KB
case_08.txt AC 23 ms 804 KB
case_09.txt AC 22 ms 800 KB
case_10.txt AC 21 ms 928 KB
case_11.txt AC 21 ms 800 KB
case_12.txt AC 22 ms 812 KB
case_13.txt AC 21 ms 800 KB
case_14.txt AC 20 ms 804 KB
case_15.txt AC 20 ms 924 KB
sample_01.txt AC 25 ms 800 KB
sample_02.txt AC 21 ms 924 KB
sample_03.txt AC 20 ms 800 KB