結果
| 問題 |
No.706 多眼生物の調査
|
| コンテスト | |
| ユーザー |
CELICA
|
| 提出日時 | 2020-10-20 20:29:19 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 566 bytes |
| コンパイル時間 | 1,517 ms |
| コンパイル使用メモリ | 173,844 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-21 08:26:48 |
| 合計ジャッジ時間 | 2,069 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ul = unsigned long;
using ull = unsigned long long;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
map<size_t, int> m;
for (int i = 0; i < n; ++i)
{
string s;
cin >> s;
++m[s.size() - 2];
}
auto it = max_element(m.begin(), m.end(),
[](const pair<unsigned, int>& p1, const pair<unsigned, int>& p2)
{
return (p1.second < p2.second) ||
((p1.second == p2.second) && (p1.first < p2.first));
});
cout << it->first << "\n";
return 0;
}
CELICA