結果

問題 No.45 回転寿司
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 14:55:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 42,640 KB
最終ジャッジ日時 2024-06-08 11:25:01
合計ジャッジ時間 9,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
41,720 KB
testcase_01 AC 167 ms
42,008 KB
testcase_02 AC 184 ms
42,316 KB
testcase_03 AC 179 ms
42,640 KB
testcase_04 AC 183 ms
42,252 KB
testcase_05 AC 141 ms
41,680 KB
testcase_06 AC 179 ms
41,856 KB
testcase_07 AC 187 ms
42,336 KB
testcase_08 AC 156 ms
41,768 KB
testcase_09 AC 185 ms
42,172 KB
testcase_10 AC 182 ms
41,996 KB
testcase_11 AC 159 ms
41,692 KB
testcase_12 AC 187 ms
42,296 KB
testcase_13 AC 142 ms
41,352 KB
testcase_14 AC 140 ms
41,340 KB
testcase_15 AC 167 ms
42,008 KB
testcase_16 AC 155 ms
41,476 KB
testcase_17 AC 176 ms
41,556 KB
testcase_18 AC 164 ms
41,764 KB
testcase_19 AC 181 ms
42,352 KB
testcase_20 AC 136 ms
41,300 KB
testcase_21 AC 139 ms
41,324 KB
testcase_22 AC 130 ms
41,172 KB
testcase_23 AC 130 ms
41,228 KB
testcase_24 AC 129 ms
41,108 KB
testcase_25 AC 130 ms
41,044 KB
testcase_26 AC 175 ms
42,076 KB
testcase_27 AC 180 ms
42,540 KB
testcase_28 AC 179 ms
41,676 KB
testcase_29 AC 182 ms
42,224 KB
testcase_30 AC 182 ms
42,272 KB
testcase_31 AC 128 ms
41,380 KB
testcase_32 AC 118 ms
40,060 KB
testcase_33 AC 185 ms
42,352 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