結果

問題 No.45 回転寿司
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 05:28:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 73,940 KB
実行使用メモリ 42,464 KB
最終ジャッジ日時 2024-06-08 11:05:18
合計ジャッジ時間 7,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,248 KB
testcase_01 AC 150 ms
41,524 KB
testcase_02 AC 138 ms
42,016 KB
testcase_03 AC 159 ms
41,940 KB
testcase_04 AC 151 ms
41,668 KB
testcase_05 AC 114 ms
41,020 KB
testcase_06 AC 135 ms
41,628 KB
testcase_07 AC 140 ms
42,464 KB
testcase_08 AC 125 ms
41,204 KB
testcase_09 AC 149 ms
42,448 KB
testcase_10 AC 144 ms
41,372 KB
testcase_11 AC 133 ms
41,300 KB
testcase_12 AC 152 ms
42,056 KB
testcase_13 AC 114 ms
41,108 KB
testcase_14 AC 110 ms
40,924 KB
testcase_15 AC 139 ms
41,672 KB
testcase_16 AC 132 ms
41,140 KB
testcase_17 AC 142 ms
41,480 KB
testcase_18 AC 134 ms
41,552 KB
testcase_19 AC 150 ms
42,124 KB
testcase_20 AC 112 ms
39,940 KB
testcase_21 AC 116 ms
40,904 KB
testcase_22 AC 113 ms
41,016 KB
testcase_23 AC 104 ms
41,096 KB
testcase_24 AC 105 ms
40,144 KB
testcase_25 AC 107 ms
40,088 KB
testcase_26 AC 140 ms
41,616 KB
testcase_27 AC 163 ms
42,024 KB
testcase_28 AC 162 ms
41,664 KB
testcase_29 AC 166 ms
42,048 KB
testcase_30 AC 156 ms
41,828 KB
testcase_31 AC 113 ms
41,184 KB
testcase_32 AC 107 ms
41,076 KB
testcase_33 AC 165 ms
42,224 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();
        }
        if(N==1){
            System.out.println(V[0]);
        }else{
            int [] dp = new int [N];
            dp[0]=V[0];
            dp[1]=Math.max(V[0],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