結果

問題 No.706 多眼生物の調査
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-06-29 22:56:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 56,600 KB
最終ジャッジ日時 2024-07-01 00:07:23
合計ジャッジ時間 3,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,980 KB
testcase_01 AC 132 ms
54,216 KB
testcase_02 AC 129 ms
53,976 KB
testcase_03 AC 160 ms
54,088 KB
testcase_04 AC 171 ms
54,492 KB
testcase_05 AC 211 ms
54,764 KB
testcase_06 AC 270 ms
56,600 KB
testcase_07 AC 130 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] sl = new int[1000];
        for(int i=0; i<n; i++) {
            String s = in.next();
            sl[s.length() - 2]++;
        }

        int max = 0, maxcount = 0;
        for(int i=0; i<1000; i++) {
            if(max <= sl[i]) {
                max = sl[i];
                maxcount = i;
            }
        }

        System.out.println(maxcount);
    }
}
0