結果

問題 No.45 回転寿司
ユーザー SagTokiSagToki
提出日時 2018-05-22 14:26:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 194 ms / 5,000 ms
コード長 2,163 bytes
コンパイル時間 9,878 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 42,324 KB
最終ジャッジ日時 2024-12-27 19:01:35
合計ジャッジ時間 13,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
41,812 KB
testcase_01 AC 184 ms
41,716 KB
testcase_02 AC 189 ms
41,972 KB
testcase_03 AC 189 ms
42,324 KB
testcase_04 AC 188 ms
42,204 KB
testcase_05 AC 156 ms
40,944 KB
testcase_06 AC 183 ms
41,720 KB
testcase_07 AC 178 ms
42,032 KB
testcase_08 AC 153 ms
41,300 KB
testcase_09 AC 185 ms
41,860 KB
testcase_10 AC 177 ms
41,652 KB
testcase_11 AC 154 ms
41,496 KB
testcase_12 AC 189 ms
42,160 KB
testcase_13 AC 150 ms
41,216 KB
testcase_14 AC 144 ms
40,944 KB
testcase_15 AC 183 ms
41,852 KB
testcase_16 AC 170 ms
41,352 KB
testcase_17 AC 167 ms
41,336 KB
testcase_18 AC 168 ms
41,492 KB
testcase_19 AC 182 ms
41,884 KB
testcase_20 AC 131 ms
40,188 KB
testcase_21 AC 153 ms
41,200 KB
testcase_22 AC 143 ms
41,156 KB
testcase_23 AC 140 ms
41,200 KB
testcase_24 AC 135 ms
40,984 KB
testcase_25 AC 144 ms
41,312 KB
testcase_26 AC 183 ms
41,888 KB
testcase_27 AC 191 ms
41,880 KB
testcase_28 AC 170 ms
41,628 KB
testcase_29 AC 181 ms
41,952 KB
testcase_30 AC 191 ms
42,072 KB
testcase_31 AC 128 ms
39,996 KB
testcase_32 AC 130 ms
41,044 KB
testcase_33 AC 194 ms
42,324 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