mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-24 03:31:59 +00:00
parent
0678e7c2fd
commit
f50c87b73c
27
AtCoder/ABC231/B/B.cpp
Normal file
27
AtCoder/ABC231/B/B.cpp
Normal file
@ -0,0 +1,27 @@
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
using std::endl;
|
||||
|
||||
int n;
|
||||
std::string s;
|
||||
std::map<std::string, int> m;
|
||||
std::pair<std::string, int> ans;
|
||||
|
||||
int main() {
|
||||
cin >> n;
|
||||
while (n--) {
|
||||
cin >> s;
|
||||
m[s]++;
|
||||
}
|
||||
for (auto i : m) {
|
||||
if (i.second > ans.second) {
|
||||
ans = i;
|
||||
}
|
||||
}
|
||||
cout << ans.first << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user