結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー l1267976l1267976
提出日時 2017-03-18 22:37:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 597 ms / 5,000 ms
コード長 1,146 bytes
コンパイル時間 3,922 ms
コンパイル使用メモリ 88,040 KB
実行使用メモリ 47,984 KB
最終ジャッジ日時 2024-06-26 08:10:53
合計ジャッジ時間 13,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
45,564 KB
testcase_01 AC 584 ms
47,828 KB
testcase_02 AC 138 ms
41,224 KB
testcase_03 AC 123 ms
40,320 KB
testcase_04 AC 137 ms
41,312 KB
testcase_05 AC 582 ms
47,852 KB
testcase_06 AC 135 ms
41,116 KB
testcase_07 AC 137 ms
41,220 KB
testcase_08 AC 137 ms
41,148 KB
testcase_09 AC 134 ms
41,116 KB
testcase_10 AC 136 ms
41,168 KB
testcase_11 AC 136 ms
41,244 KB
testcase_12 AC 139 ms
41,260 KB
testcase_13 AC 123 ms
40,068 KB
testcase_14 AC 485 ms
47,948 KB
testcase_15 AC 316 ms
47,344 KB
testcase_16 AC 573 ms
47,760 KB
testcase_17 AC 310 ms
47,388 KB
testcase_18 AC 525 ms
47,776 KB
testcase_19 AC 472 ms
47,356 KB
testcase_20 AC 581 ms
47,892 KB
testcase_21 AC 207 ms
43,480 KB
testcase_22 AC 377 ms
47,916 KB
testcase_23 AC 582 ms
47,984 KB
testcase_24 AC 597 ms
47,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;

public class No79 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();

        Map<Integer, Integer> map = new HashMap<>();

        for (int i = 0; i < n; i++) {
            int li = sc.nextInt();

            if (map.containsKey(li)) {
                map.put(li, map.get(li) + 1);
            } else {
                map.put(li, 1);
            }
        }

        int maxCnt = 0;

        for (Map.Entry<Integer, Integer> e : map.entrySet()) {
            if (e.getValue() > maxCnt) {
                maxCnt = e.getValue();
            }
        }

        List<Integer> resultList = new ArrayList<>();

        for (Map.Entry<Integer, Integer> e : map.entrySet()) {
            if (e.getValue() == maxCnt) {
                resultList.add(e.getKey());
            }
        }

        Collections.sort(resultList);
        System.out.println(resultList.get(resultList.size() - 1));

        sc.close();
    }

}
0