結果

問題 No.45 回転寿司
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 05:21:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 42,632 KB
最終ジャッジ日時 2024-05-06 00:05:11
合計ジャッジ時間 8,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,864 KB
testcase_01 AC 148 ms
41,820 KB
testcase_02 WA -
testcase_03 AC 152 ms
42,148 KB
testcase_04 AC 138 ms
41,824 KB
testcase_05 AC 124 ms
41,816 KB
testcase_06 AC 147 ms
41,944 KB
testcase_07 AC 156 ms
42,220 KB
testcase_08 WA -
testcase_09 AC 149 ms
42,092 KB
testcase_10 AC 148 ms
41,652 KB
testcase_11 WA -
testcase_12 AC 155 ms
42,632 KB
testcase_13 AC 114 ms
41,156 KB
testcase_14 AC 118 ms
41,060 KB
testcase_15 AC 149 ms
42,032 KB
testcase_16 WA -
testcase_17 AC 152 ms
41,564 KB
testcase_18 AC 135 ms
41,456 KB
testcase_19 WA -
testcase_20 AC 113 ms
41,684 KB
testcase_21 AC 118 ms
41,280 KB
testcase_22 AC 114 ms
41,068 KB
testcase_23 WA -
testcase_24 AC 108 ms
41,068 KB
testcase_25 RE -
testcase_26 AC 149 ms
41,964 KB
testcase_27 WA -
testcase_28 AC 148 ms
42,028 KB
testcase_29 AC 156 ms
42,324 KB
testcase_30 AC 148 ms
41,892 KB
testcase_31 AC 105 ms
41,116 KB
testcase_32 AC 104 ms
40,984 KB
testcase_33 AC 157 ms
42,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] V = new int [N];
        for(int i=0; i<N; i++){
            V[i]=sc.nextInt();
        }
        int [] dp = new int [N];
        dp[0]=V[0];
        dp[1]=V[1];
        for(int i=2; i<N; i++){
            dp[i]=Math.max(dp[i-1],dp[i-2]+V[i]);
        }
        System.out.println(Math.max(dp[N-1],dp[N-2]));
    }
}
0