結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー SagTokiSagToki
提出日時 2018-05-15 17:06:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 1,234 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 75,308 KB
実行使用メモリ 48,128 KB
最終ジャッジ日時 2024-06-28 12:08:25
合計ジャッジ時間 12,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
45,504 KB
testcase_01 AC 554 ms
47,840 KB
testcase_02 AC 136 ms
41,272 KB
testcase_03 AC 133 ms
41,392 KB
testcase_04 AC 133 ms
41,112 KB
testcase_05 AC 561 ms
47,752 KB
testcase_06 AC 143 ms
41,488 KB
testcase_07 AC 135 ms
41,456 KB
testcase_08 AC 131 ms
41,244 KB
testcase_09 AC 132 ms
41,352 KB
testcase_10 AC 135 ms
41,716 KB
testcase_11 AC 137 ms
41,572 KB
testcase_12 AC 134 ms
41,408 KB
testcase_13 AC 134 ms
41,504 KB
testcase_14 AC 470 ms
47,772 KB
testcase_15 AC 303 ms
47,428 KB
testcase_16 AC 478 ms
47,808 KB
testcase_17 AC 309 ms
47,624 KB
testcase_18 AC 513 ms
48,048 KB
testcase_19 AC 457 ms
47,776 KB
testcase_20 AC 585 ms
47,944 KB
testcase_21 AC 200 ms
43,900 KB
testcase_22 AC 414 ms
47,648 KB
testcase_23 AC 555 ms
48,128 KB
testcase_24 AC 553 ms
48,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.InputMismatchException;

public class Underestimate {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
        
        int N = scanner.nextInt();
        int[] W = new int[6];
        if(N < 1 || N > Math.pow(10, 6)){
            System.out.println("Nは1から1000000の範囲で入力してください");
            System.exit(0);
        }
        
        for(int i = 0 ; i < N ; i++){
            int L = scanner.nextInt();
            if(L < 1 || L > 6){
                System.out.println("Lは1から6の範囲で入力してください");
                System.exit(0);
            }
            W[L-1]++;
        }
        int MaxLevel = 0;
        
        for(int j = 0 ; j < W.length ; j++){
            if(W[MaxLevel] <= W[j]){
                MaxLevel = j;
            }else{
                //何も処理はしない
            }
        }
        System.out.println(MaxLevel+1);
        
        }catch(InputMismatchException e){
            System.out.println("数値を入力してください");
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
        }
    }
}
0