結果

問題 No.706 多眼生物の調査
ユーザー Pump0129Pump0129
提出日時 2018-07-23 03:43:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 2,894 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 45,316 KB
最終ジャッジ日時 2024-12-26 05:31:42
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,232 KB
testcase_01 AC 159 ms
40,840 KB
testcase_02 AC 154 ms
41,204 KB
testcase_03 AC 180 ms
41,356 KB
testcase_04 AC 208 ms
41,464 KB
testcase_05 AC 273 ms
42,488 KB
testcase_06 AC 361 ms
45,316 KB
testcase_07 AC 156 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no706;

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        int[] cnt_list = new int[1001];
        Scanner scan = new Scanner(System.in);
        int num = Integer.parseInt(scan.nextLine());
        for (int i = 0; i < num; i++) {
            cnt_list[scan.nextLine().length() - 2]++;
        }

        int max_index = 0;
        int max_num = 0;

        for (int i = 0; i < 1001; i++) {
            if (max_num <= cnt_list[i]) {
                max_index = i;
                max_num = cnt_list[i];
            }
        }
        System.out.println(max_index);
    }
}
0