結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー GrenacheGrenache
提出日時 2015-09-23 00:34:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 575 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 59,276 KB
最終ジャッジ日時 2024-06-26 07:43:23
合計ジャッジ時間 11,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
57,208 KB
testcase_01 AC 537 ms
58,780 KB
testcase_02 AC 117 ms
52,896 KB
testcase_03 AC 134 ms
53,924 KB
testcase_04 AC 131 ms
53,960 KB
testcase_05 AC 575 ms
59,104 KB
testcase_06 AC 136 ms
53,944 KB
testcase_07 AC 137 ms
54,080 KB
testcase_08 AC 133 ms
54,016 KB
testcase_09 AC 132 ms
53,952 KB
testcase_10 AC 132 ms
54,036 KB
testcase_11 AC 132 ms
54,252 KB
testcase_12 AC 133 ms
53,704 KB
testcase_13 AC 133 ms
54,152 KB
testcase_14 AC 459 ms
58,984 KB
testcase_15 AC 291 ms
58,868 KB
testcase_16 AC 500 ms
59,092 KB
testcase_17 AC 285 ms
58,636 KB
testcase_18 AC 490 ms
59,104 KB
testcase_19 AC 409 ms
58,828 KB
testcase_20 AC 537 ms
59,144 KB
testcase_21 AC 204 ms
56,112 KB
testcase_22 AC 344 ms
59,044 KB
testcase_23 AC 530 ms
59,276 KB
testcase_24 AC 548 ms
58,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder79 {

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

        int n = sc.nextInt();
        int[] lc = new int[6];
        for (int i = 0; i < n; i++) {
        	int l = sc.nextInt() - 1;
        	lc[l]++;
        }

        int max = 0;
        int maxi = 0;
        for (int i = 5; i >= 0; i--) {
        	if (lc[i] > max) {
        		max = lc[i];
        		maxi = i + 1;
        	}
        }
        
        System.out.println(maxi);

        sc.close();
    }
}
0