結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー yagi2yagi2
提出日時 2017-04-25 14:37:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 488 ms / 5,000 ms
コード長 940 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 89,176 KB
実行使用メモリ 48,244 KB
最終ジャッジ日時 2024-06-26 08:12:19
合計ジャッジ時間 9,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
43,340 KB
testcase_01 AC 479 ms
48,244 KB
testcase_02 AC 109 ms
40,264 KB
testcase_03 AC 125 ms
41,244 KB
testcase_04 AC 125 ms
41,396 KB
testcase_05 AC 397 ms
47,356 KB
testcase_06 AC 125 ms
41,244 KB
testcase_07 AC 125 ms
41,468 KB
testcase_08 AC 127 ms
41,372 KB
testcase_09 AC 126 ms
41,188 KB
testcase_10 AC 125 ms
41,672 KB
testcase_11 AC 129 ms
41,108 KB
testcase_12 AC 127 ms
41,172 KB
testcase_13 AC 125 ms
41,228 KB
testcase_14 AC 369 ms
48,064 KB
testcase_15 AC 260 ms
47,700 KB
testcase_16 AC 435 ms
48,024 KB
testcase_17 AC 250 ms
47,152 KB
testcase_18 AC 425 ms
47,888 KB
testcase_19 AC 351 ms
47,608 KB
testcase_20 AC 488 ms
48,168 KB
testcase_21 AC 176 ms
42,444 KB
testcase_22 AC 282 ms
47,720 KB
testcase_23 AC 433 ms
47,888 KB
testcase_24 AC 478 ms
48,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());

        Map<Integer, Integer> L = new HashMap<>();
        for (int i = 0 ; i < N; i++) {
            int l = Integer.parseInt(sc.next());

            if (!L.containsKey(l)) L.put(l, 0);
            L.put(l, L.get(l)+1);
        }

        List<Map.Entry<Integer, Integer>> entryList = new ArrayList<>(L.entrySet());
        entryList.sort((o1, o2) -> {
            if (o1.getValue() > o2.getValue()) return -1;
            if (o1.getValue() < o2.getValue()) return 1;

            if (Objects.equals(o1.getValue(), o2.getValue())) {
                if (o1.getKey() > o2.getKey()) return -1;
                if (o1.getKey() < o2.getKey()) return 1;
            }
            return 0;
        });

        System.out.println(entryList.get(0).getKey());
    }
}
0