結果

問題 No.706 多眼生物の調査
ユーザー tsunabittsunabit
提出日時 2019-06-24 22:33:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 4,062 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 56,140 KB
最終ジャッジ日時 2024-06-22 06:04:34
合計ジャッジ時間 6,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,916 KB
testcase_01 AC 139 ms
54,136 KB
testcase_02 AC 141 ms
54,144 KB
testcase_03 AC 180 ms
54,344 KB
testcase_04 AC 191 ms
54,368 KB
testcase_05 AC 243 ms
55,716 KB
testcase_06 AC 311 ms
56,140 KB
testcase_07 AC 148 ms
53,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No706 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	Map<Integer, Integer> m = new TreeMap<Integer, Integer>();
    	for(int i = 0; i < n; i++) {
    		int t = sc.next().length() - 2;
    		if(m.containsKey(t)) m.put(t, m.get(t) + 1);
    		else m.put(t, 1);
    	}
    	int max = 0, o = 0;
    	for(int k : m.keySet()) {
    		if(max <= m.get(k)) {
    			max = m.get(k);
    			o = k;
    		}
    	}
    	System.out.println(o);
    	
    }
}
0