結果

問題 No.45 回転寿司
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 05:21:48
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-11-28 01:22:17
合計ジャッジ時間 9,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
41,756 KB
testcase_01 AC 176 ms
41,976 KB
testcase_02 WA -
testcase_03 AC 183 ms
42,344 KB
testcase_04 AC 162 ms
41,788 KB
testcase_05 AC 135 ms
41,120 KB
testcase_06 AC 170 ms
42,064 KB
testcase_07 AC 182 ms
42,488 KB
testcase_08 WA -
testcase_09 AC 178 ms
42,528 KB
testcase_10 AC 167 ms
42,204 KB
testcase_11 WA -
testcase_12 AC 184 ms
42,152 KB
testcase_13 AC 139 ms
41,624 KB
testcase_14 AC 135 ms
41,380 KB
testcase_15 AC 172 ms
41,896 KB
testcase_16 WA -
testcase_17 AC 174 ms
41,856 KB
testcase_18 AC 152 ms
41,736 KB
testcase_19 WA -
testcase_20 AC 133 ms
41,520 KB
testcase_21 AC 133 ms
41,208 KB
testcase_22 AC 123 ms
41,368 KB
testcase_23 WA -
testcase_24 AC 127 ms
41,136 KB
testcase_25 RE -
testcase_26 AC 168 ms
42,340 KB
testcase_27 WA -
testcase_28 AC 168 ms
41,916 KB
testcase_29 AC 179 ms
42,224 KB
testcase_30 AC 177 ms
42,180 KB
testcase_31 AC 127 ms
41,484 KB
testcase_32 AC 127 ms
41,080 KB
testcase_33 AC 180 ms
42,684 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