結果

問題 No.706 多眼生物の調査
ユーザー kohaku_kohaku
提出日時 2018-06-29 22:28:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 55,168 KB
最終ジャッジ日時 2024-06-30 23:56:58
合計ジャッジ時間 3,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int [] num = new int [1001];
        int max = 0;
        for(int i = 0; i < n; i++) {
            String s = sc.next();
            int l = s.length()-2;
            num[l]++;
            max = Math.max(max, num[l]);
        }
        for(int j = num.length-1; j>=0; j--) {
            if(num[j] == max) {
                System.out.println(j);
                break;
            }
        }
    }
}
0