結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー abcabc
提出日時 2016-11-02 11:50:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 605 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 48,080 KB
最終ジャッジ日時 2024-06-26 08:05:35
合計ジャッジ時間 11,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
45,568 KB
testcase_01 AC 561 ms
47,824 KB
testcase_02 AC 135 ms
41,064 KB
testcase_03 AC 137 ms
41,408 KB
testcase_04 AC 136 ms
41,456 KB
testcase_05 AC 605 ms
47,972 KB
testcase_06 AC 135 ms
41,264 KB
testcase_07 AC 138 ms
41,932 KB
testcase_08 AC 146 ms
41,320 KB
testcase_09 AC 137 ms
41,416 KB
testcase_10 AC 137 ms
41,520 KB
testcase_11 AC 138 ms
41,536 KB
testcase_12 AC 139 ms
41,180 KB
testcase_13 AC 140 ms
41,064 KB
testcase_14 AC 467 ms
47,756 KB
testcase_15 AC 301 ms
47,468 KB
testcase_16 AC 506 ms
47,928 KB
testcase_17 AC 326 ms
47,356 KB
testcase_18 AC 511 ms
48,080 KB
testcase_19 AC 434 ms
47,792 KB
testcase_20 AC 563 ms
47,828 KB
testcase_21 AC 212 ms
43,292 KB
testcase_22 AC 397 ms
47,828 KB
testcase_23 AC 590 ms
47,996 KB
testcase_24 AC 550 ms
48,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numUsers = sc.nextInt();
        int[] levelsCount = new int[6];

        for (int i = 0; i < numUsers; i++) {
            levelsCount[sc.nextInt() - 1]++;
        }

        int max = 0;
        int level = 0;

        for (int i = 0; i < levelsCount.length; i++) {

            if (levelsCount[i] >= max) {

                max = levelsCount[i];
                level = i + 1;

            }

        }

        System.out.println(level);

    }

}
0