結果

問題 No.45 回転寿司
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 14:55:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 3,725 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 42,440 KB
最終ジャッジ日時 2024-12-27 16:37:41
合計ジャッジ時間 9,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
41,616 KB
testcase_01 AC 178 ms
41,928 KB
testcase_02 AC 190 ms
41,960 KB
testcase_03 AC 188 ms
42,248 KB
testcase_04 AC 184 ms
41,596 KB
testcase_05 AC 142 ms
41,356 KB
testcase_06 AC 183 ms
41,620 KB
testcase_07 AC 192 ms
41,756 KB
testcase_08 AC 165 ms
41,596 KB
testcase_09 AC 187 ms
42,068 KB
testcase_10 AC 178 ms
42,080 KB
testcase_11 AC 176 ms
41,504 KB
testcase_12 AC 188 ms
42,100 KB
testcase_13 AC 148 ms
41,300 KB
testcase_14 AC 142 ms
41,184 KB
testcase_15 AC 168 ms
41,844 KB
testcase_16 AC 170 ms
41,456 KB
testcase_17 AC 177 ms
41,488 KB
testcase_18 AC 158 ms
41,736 KB
testcase_19 AC 189 ms
41,956 KB
testcase_20 AC 146 ms
41,504 KB
testcase_21 AC 142 ms
41,368 KB
testcase_22 AC 122 ms
41,068 KB
testcase_23 AC 134 ms
41,080 KB
testcase_24 AC 132 ms
41,176 KB
testcase_25 AC 134 ms
41,072 KB
testcase_26 AC 176 ms
42,128 KB
testcase_27 AC 193 ms
41,740 KB
testcase_28 AC 172 ms
41,664 KB
testcase_29 AC 181 ms
41,664 KB
testcase_30 AC 186 ms
42,036 KB
testcase_31 AC 137 ms
41,556 KB
testcase_32 AC 132 ms
41,332 KB
testcase_33 AC 197 ms
42,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    static Scanner in = new Scanner(System.in);

    public static void main(String[] args) {
        int N = in.nextInt();
        int[] v = new int[N + 1];
        for(int i = 0; i < N; i++){
            v[i] = in.nextInt();
        }
        int[] y = new int[N + 1];
        Arrays.fill(y, Integer.MAX_VALUE);
        y[0] = 0;
        y[1] = v[0];
        
        for(int i = 2; i < v.length; i++){
            y[i] = Math.max(y[i - 1], y[i - 2] + v[i - 1]);
        }
        System.out.println(y[N]);

    }
}
0