結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー dazydazy
提出日時 2016-09-09 16:02:04
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 786 bytes
コンパイル時間 4,411 ms
コンパイル使用メモリ 78,192 KB
実行使用メモリ 48,636 KB
最終ジャッジ日時 2024-06-24 20:37:17
合計ジャッジ時間 12,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 558 ms
48,576 KB
testcase_02 AC 126 ms
41,652 KB
testcase_03 AC 112 ms
41,508 KB
testcase_04 AC 129 ms
41,392 KB
testcase_05 AC 576 ms
48,548 KB
testcase_06 AC 125 ms
41,360 KB
testcase_07 AC 122 ms
41,176 KB
testcase_08 AC 123 ms
41,232 KB
testcase_09 AC 123 ms
41,376 KB
testcase_10 AC 122 ms
41,644 KB
testcase_11 AC 112 ms
41,324 KB
testcase_12 AC 121 ms
41,108 KB
testcase_13 AC 116 ms
40,376 KB
testcase_14 AC 494 ms
48,444 KB
testcase_15 AC 330 ms
47,800 KB
testcase_16 AC 524 ms
48,340 KB
testcase_17 AC 292 ms
47,984 KB
testcase_18 AC 508 ms
48,516 KB
testcase_19 AC 443 ms
48,556 KB
testcase_20 AC 559 ms
48,636 KB
testcase_21 AC 197 ms
43,976 KB
testcase_22 AC 375 ms
48,296 KB
testcase_23 AC 538 ms
48,560 KB
testcase_24 AC 556 ms
48,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        if (N < 1||N > 100000) System.exit(1);
        HashMap<Integer, Integer> ev = new HashMap<>();
        int[] L = new int[N];
        for (int i = 0; i < N; i++) {
            L[i] = scan.nextInt();
            if (L[i] < 1||L[i] > 6) System.exit(1);
            if (!ev.containsKey(L[i])) ev.put(L[i], 1);
            else ev.put(L[i], ev.get(L[i]) + 1);
        }

        int max = L[0];
        for (int i : L) {
            if (ev.get(max) < ev.get(i)) max = i;
            else if (ev.get(max)==ev.get(i)){
                if (max < i) max = i;
            }
        }
        System.out.println(max);
    }
}
0