結果

問題 No.706 多眼生物の調査
ユーザー htensaihtensai
提出日時 2019-11-12 01:28:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 76,332 KB
実行使用メモリ 44,032 KB
最終ジャッジ日時 2024-09-15 12:34:09
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,196 KB
testcase_01 AC 132 ms
40,920 KB
testcase_02 AC 135 ms
41,148 KB
testcase_03 AC 168 ms
41,596 KB
testcase_04 AC 174 ms
41,624 KB
testcase_05 AC 226 ms
42,660 KB
testcase_06 AC 287 ms
44,032 KB
testcase_07 AC 133 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		TreeMap<Integer, Integer> map = new TreeMap<>();
		for (int i = 0; i < n; i++) {
		    int x = sc.next().length();
		    if (map.containsKey(x)) {
		        map.put(x, map.get(x) + 1);
		    } else {
		        map.put(x, 1);
		    }
		}
		int max = 0;
		int maxIdx = 0;
		for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
		    if (entry.getValue() >= max) {
		        max = entry.getValue();
		        maxIdx = entry.getKey();
		    }
		}
		System.out.println(maxIdx - 2);
	}
}
0