結果

問題 No.45 回転寿司
ユーザー SagTokiSagToki
提出日時 2018-05-22 14:26:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 2,163 bytes
コンパイル時間 3,709 ms
コンパイル使用メモリ 78,236 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-06-08 12:15:00
合計ジャッジ時間 9,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
54,520 KB
testcase_01 AC 168 ms
54,000 KB
testcase_02 AC 173 ms
54,284 KB
testcase_03 AC 176 ms
54,348 KB
testcase_04 AC 172 ms
54,496 KB
testcase_05 AC 137 ms
54,132 KB
testcase_06 AC 170 ms
54,028 KB
testcase_07 AC 155 ms
54,224 KB
testcase_08 AC 158 ms
54,416 KB
testcase_09 AC 173 ms
54,348 KB
testcase_10 AC 166 ms
54,268 KB
testcase_11 AC 137 ms
54,100 KB
testcase_12 AC 175 ms
54,364 KB
testcase_13 AC 134 ms
54,072 KB
testcase_14 AC 132 ms
53,996 KB
testcase_15 AC 162 ms
54,036 KB
testcase_16 AC 157 ms
54,064 KB
testcase_17 AC 164 ms
54,484 KB
testcase_18 AC 161 ms
54,224 KB
testcase_19 AC 171 ms
54,312 KB
testcase_20 AC 135 ms
54,248 KB
testcase_21 AC 137 ms
54,076 KB
testcase_22 AC 130 ms
54,068 KB
testcase_23 AC 127 ms
54,240 KB
testcase_24 AC 126 ms
54,180 KB
testcase_25 AC 133 ms
54,392 KB
testcase_26 AC 169 ms
54,456 KB
testcase_27 AC 175 ms
54,256 KB
testcase_28 AC 169 ms
54,220 KB
testcase_29 AC 170 ms
54,304 KB
testcase_30 AC 161 ms
54,372 KB
testcase_31 AC 125 ms
54,000 KB
testcase_32 AC 130 ms
53,928 KB
testcase_33 AC 181 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Sushi{
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            //寿司の数を入力して数値が条件内かチェック
            int N = scanner.nextInt();
            if(N < 1 || N > 1000){
                System.out.println("Nは1以上1000以下で入力してください");
                System.exit(0);
            }
            
            //食べた寿司の美味しさを数える長さNのカウント配列を定義
            int[] Count = new int[N];
            
            //与えられた個数の美味しさ数をint配列に順番に入れていく
            int[] Delicious = new int[N];
            for(int i = 0 ; i < N ; i++){
                Delicious[i] = scanner.nextInt();
                if(Delicious[i] < 1 || Delicious[i] > 100){
                    System.out.println("美味しさは1以上100以下で入力してください");
                    System.exit(0);
                }
            }
            
            //もしもNが1だった場合その値が答えになるので先に条件分岐
            if(N > 1){
                Count[1] = Math.max(Delicious[0],Delicious[1]);
            }else{
                System.out.println(Delicious[0]);
                System.exit(0);
            }
            
            //Nが2以上の場合に一番美味しさ数が多くなる組み合わせを動的計画法で抽出
            for(int j = 2 ; j < N ; j++){
                if(Count[0] == 0){
                    Count[0] = Delicious[0];
                }
                Count[j] = Math.max(Count[j - 1],Count[j - 2] + Delicious[j]); 
            }
            
            //Count[N - 1]が取りうる最大の美味しさ数の合計になっているのでプリントする
            System.out.println(Count[N - 1]);

        }catch(InputMismatchException e){
            System.out.println("数字で入力してください");
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
        }
    }
}
0