結果

問題 No.706 多眼生物の調査
ユーザー KKT89
提出日時 2020-07-13 17:08:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 1,724 ms
コンパイル使用メモリ 113,596 KB
最終ジャッジ日時 2025-01-11 20:17:25
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

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