結果

問題 No.706 多眼生物の調査
ユーザー KKT89KKT89
提出日時 2020-07-13 17:08:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 1,371 ms
コンパイル使用メモリ 116,804 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 09:57:38
合計ジャッジ時間 1,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
using namespace std;
typedef long long int ll;
using ull = unsigned long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    map<int,int> mp;
    int res=0;
    int mx=0;
    int n; cin >> n;
    while(n--){
        string s; cin >> s;
        int m=s.size();
        mp[m-2]++;
        if(mp[m-2]>mx){
            mx=mp[m-2];
            res=m-2;
        }
        else if(mp[m-2]==mx){
            res=max(res,m-2);
        }
    }
    cout << res << endl;
}
0