結果

問題 No.45 回転寿司
ユーザー vektor_dnchrvektor_dnchr
提出日時 2016-11-07 03:45:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 846 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-06-08 11:06:34
合計ジャッジ時間 9,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
42,128 KB
testcase_01 AC 180 ms
41,932 KB
testcase_02 AC 181 ms
42,352 KB
testcase_03 AC 188 ms
42,268 KB
testcase_04 AC 183 ms
42,176 KB
testcase_05 AC 142 ms
41,400 KB
testcase_06 AC 168 ms
41,828 KB
testcase_07 AC 186 ms
42,396 KB
testcase_08 AC 167 ms
41,568 KB
testcase_09 AC 186 ms
42,496 KB
testcase_10 AC 173 ms
41,872 KB
testcase_11 AC 150 ms
41,752 KB
testcase_12 AC 186 ms
42,564 KB
testcase_13 AC 142 ms
41,640 KB
testcase_14 AC 141 ms
41,392 KB
testcase_15 AC 185 ms
41,820 KB
testcase_16 AC 165 ms
41,760 KB
testcase_17 AC 173 ms
41,900 KB
testcase_18 AC 160 ms
41,540 KB
testcase_19 AC 180 ms
42,064 KB
testcase_20 AC 141 ms
41,252 KB
testcase_21 AC 142 ms
41,356 KB
testcase_22 AC 130 ms
41,440 KB
testcase_23 AC 136 ms
41,516 KB
testcase_24 AC 133 ms
41,244 KB
testcase_25 AC 132 ms
41,212 KB
testcase_26 AC 168 ms
41,904 KB
testcase_27 AC 186 ms
42,524 KB
testcase_28 AC 166 ms
41,884 KB
testcase_29 AC 175 ms
42,204 KB
testcase_30 AC 184 ms
42,372 KB
testcase_31 AC 135 ms
41,088 KB
testcase_32 AC 134 ms
41,288 KB
testcase_33 AC 183 ms
42,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    static int N;
    static int[] V = new int[1002];
    static int[] memo = new int[1002];
    
    public static int  rec(int i){
        int ret;
        if(i >= N){ret = 0;}
        else{
            if(memo[i+1] == -1){ memo[i+1] = rec(i+1); }
            if(memo[i+2] == -1){ memo[i+2] = rec(i+2); }
            ret = Math.max(memo[i+1], memo[i+2]+V[i]);
            //System.out.println(i+":"+memo[i+1]+ " " +(memo[i+2]+V[i]));
        }
        
        return ret;
    }
    
    public static void main(String[] args) throws Exception {
        // Here your code !
        Scanner sc = new Scanner(System.in);
        N = sc.nextInt();
        
        for(int i=0; i<N; i++) V[i] = sc.nextInt();
        Arrays.fill(memo,-1);
        System.out.println(rec(0));
        
        
    }
}
0