結果

問題 No.706 多眼生物の調査
ユーザー shioyashioya
提出日時 2018-07-08 18:00:21
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 51,488 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-22 03:02:42
合計ジャッジ時間 1,164 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<string>
using namespace std;

int main()
{
    int sum[1001];
    for(int i=0;i<1001;i++){
        sum[i] = 0;
    }
    int num;
    cin>>num;
    string str;
    for(int i=0;i<num;i++){
        cin>>str;
        sum[str.length()-2]++;
    }
    int max = 0;
    for(int i=0;i<1001;i++){
        if(max <= sum[i]){
            max = i;
        }
    }
    cout<<max;
    return 0;
}
0