結果

問題 No.45 回転寿司
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 05:28:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 2,805 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 42,732 KB
最終ジャッジ日時 2024-12-27 15:40:11
合計ジャッジ時間 9,180 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
42,224 KB
testcase_01 AC 185 ms
42,352 KB
testcase_02 AC 188 ms
42,440 KB
testcase_03 AC 196 ms
42,440 KB
testcase_04 AC 178 ms
42,348 KB
testcase_05 AC 149 ms
41,856 KB
testcase_06 AC 173 ms
41,892 KB
testcase_07 AC 188 ms
42,104 KB
testcase_08 AC 171 ms
41,852 KB
testcase_09 AC 192 ms
42,336 KB
testcase_10 AC 181 ms
41,928 KB
testcase_11 AC 149 ms
41,304 KB
testcase_12 AC 192 ms
42,152 KB
testcase_13 AC 145 ms
41,432 KB
testcase_14 AC 142 ms
41,004 KB
testcase_15 AC 180 ms
41,716 KB
testcase_16 AC 161 ms
41,820 KB
testcase_17 AC 174 ms
41,788 KB
testcase_18 AC 172 ms
41,512 KB
testcase_19 AC 187 ms
42,032 KB
testcase_20 AC 141 ms
41,616 KB
testcase_21 AC 143 ms
41,620 KB
testcase_22 AC 126 ms
41,532 KB
testcase_23 AC 133 ms
41,424 KB
testcase_24 AC 138 ms
41,664 KB
testcase_25 AC 121 ms
41,584 KB
testcase_26 AC 170 ms
41,800 KB
testcase_27 AC 187 ms
42,168 KB
testcase_28 AC 184 ms
41,528 KB
testcase_29 AC 180 ms
41,664 KB
testcase_30 AC 184 ms
41,940 KB
testcase_31 AC 131 ms
40,852 KB
testcase_32 AC 122 ms
40,220 KB
testcase_33 AC 194 ms
42,732 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