結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 05:36:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 550 ms / 5,000 ms
コード長 611 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 48,464 KB
最終ジャッジ日時 2024-06-26 08:05:47
合計ジャッジ時間 10,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
45,292 KB
testcase_01 AC 502 ms
48,464 KB
testcase_02 AC 128 ms
41,136 KB
testcase_03 AC 125 ms
41,224 KB
testcase_04 AC 108 ms
39,968 KB
testcase_05 AC 550 ms
48,244 KB
testcase_06 AC 128 ms
41,328 KB
testcase_07 AC 129 ms
41,072 KB
testcase_08 AC 126 ms
41,800 KB
testcase_09 AC 122 ms
41,092 KB
testcase_10 AC 126 ms
40,568 KB
testcase_11 AC 126 ms
41,440 KB
testcase_12 AC 125 ms
41,356 KB
testcase_13 AC 127 ms
41,480 KB
testcase_14 AC 480 ms
47,888 KB
testcase_15 AC 301 ms
47,484 KB
testcase_16 AC 489 ms
48,212 KB
testcase_17 AC 303 ms
47,700 KB
testcase_18 AC 478 ms
48,004 KB
testcase_19 AC 429 ms
48,040 KB
testcase_20 AC 511 ms
48,176 KB
testcase_21 AC 191 ms
43,324 KB
testcase_22 AC 338 ms
47,864 KB
testcase_23 AC 483 ms
48,324 KB
testcase_24 AC 526 ms
48,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] L = new int [N];
        int [] P = new int [6];
        for(int i=0; i<N; i++){
            L[i] = sc.nextInt();
            P[L[i]-1]+=1;
        }
        int max = 0;
        for(int j=0; j<6; j++){
            if(max<P[j]){
                max=P[j];
            }
        }
        for(int j=0; j<6; j++){
            if(max==P[5-j]){
                System.out.println(6-j);
                break;
            }
        }
    }
}
0