結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-03-03 20:15:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 558 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 48,036 KB
最終ジャッジ日時 2024-06-26 07:52:34
合計ジャッジ時間 10,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
45,628 KB
testcase_01 AC 558 ms
47,828 KB
testcase_02 AC 129 ms
41,040 KB
testcase_03 AC 127 ms
41,136 KB
testcase_04 AC 126 ms
41,096 KB
testcase_05 AC 531 ms
47,692 KB
testcase_06 AC 115 ms
40,036 KB
testcase_07 AC 125 ms
41,228 KB
testcase_08 AC 127 ms
41,264 KB
testcase_09 AC 128 ms
41,064 KB
testcase_10 AC 114 ms
39,800 KB
testcase_11 AC 128 ms
41,412 KB
testcase_12 AC 127 ms
41,280 KB
testcase_13 AC 129 ms
41,160 KB
testcase_14 AC 431 ms
47,752 KB
testcase_15 AC 285 ms
47,284 KB
testcase_16 AC 531 ms
48,036 KB
testcase_17 AC 293 ms
47,264 KB
testcase_18 AC 483 ms
47,560 KB
testcase_19 AC 411 ms
47,716 KB
testcase_20 AC 497 ms
47,936 KB
testcase_21 AC 193 ms
43,312 KB
testcase_22 AC 361 ms
47,712 KB
testcase_23 AC 521 ms
48,020 KB
testcase_24 AC 540 ms
47,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int max = -1;
        int maxIndex = 0;
        int[] count = new int[6];
        for(int i=0; i<n; i++) {
            count[in.nextInt()-1]++;
        }

        for(int i=0; i<6; i++) {
            if(count[i] >= max) {
                max = count[i];
                maxIndex = i+1;
            }
        }

        System.out.println(maxIndex);
    }
}
0