結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー tentententen
提出日時 2020-11-10 15:27:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 481 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 3,049 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 48,556 KB
最終ジャッジ日時 2024-07-22 17:31:52
合計ジャッジ時間 9,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
45,344 KB
testcase_01 AC 481 ms
48,556 KB
testcase_02 AC 108 ms
41,144 KB
testcase_03 AC 101 ms
40,044 KB
testcase_04 AC 110 ms
41,312 KB
testcase_05 AC 455 ms
48,136 KB
testcase_06 AC 97 ms
40,200 KB
testcase_07 AC 99 ms
40,272 KB
testcase_08 AC 110 ms
41,076 KB
testcase_09 AC 93 ms
40,112 KB
testcase_10 AC 114 ms
41,452 KB
testcase_11 AC 99 ms
39,924 KB
testcase_12 AC 92 ms
39,672 KB
testcase_13 AC 101 ms
40,472 KB
testcase_14 AC 363 ms
47,844 KB
testcase_15 AC 290 ms
47,732 KB
testcase_16 AC 428 ms
47,832 KB
testcase_17 AC 265 ms
47,664 KB
testcase_18 AC 410 ms
47,904 KB
testcase_19 AC 375 ms
47,788 KB
testcase_20 AC 465 ms
47,968 KB
testcase_21 AC 172 ms
43,680 KB
testcase_22 AC 335 ms
47,924 KB
testcase_23 AC 477 ms
48,020 KB
testcase_24 AC 474 ms
48,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        HashMap<Integer, Integer> map = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            map.put(x, map.getOrDefault(x, 0) + 1);
        }
        int max = 0;
        int level = 0;
        for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
            if (max <= entry.getValue()) {
                max = entry.getValue();
                level = Math.max(level, entry.getKey());
            }
        }
        System.out.println(level);
    }
}
0