結果

問題 No.45 回転寿司
ユーザー vektor_dnchrvektor_dnchr
提出日時 2016-11-07 03:41:17
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 846 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 75,812 KB
実行使用メモリ 57,268 KB
最終ジャッジ日時 2024-11-25 03:39:44
合計ジャッジ時間 8,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,416 KB
testcase_01 AC 153 ms
54,244 KB
testcase_02 AC 159 ms
54,336 KB
testcase_03 AC 162 ms
54,600 KB
testcase_04 AC 159 ms
54,268 KB
testcase_05 AC 126 ms
54,036 KB
testcase_06 AC 154 ms
54,624 KB
testcase_07 AC 166 ms
54,320 KB
testcase_08 AC 146 ms
54,400 KB
testcase_09 AC 170 ms
54,664 KB
testcase_10 AC 152 ms
54,348 KB
testcase_11 AC 132 ms
54,076 KB
testcase_12 AC 165 ms
54,772 KB
testcase_13 AC 129 ms
54,196 KB
testcase_14 AC 121 ms
53,820 KB
testcase_15 AC 158 ms
54,208 KB
testcase_16 AC 142 ms
53,836 KB
testcase_17 AC 154 ms
54,244 KB
testcase_18 AC 152 ms
54,304 KB
testcase_19 AC 165 ms
54,516 KB
testcase_20 AC 125 ms
54,112 KB
testcase_21 AC 130 ms
54,036 KB
testcase_22 AC 118 ms
54,084 KB
testcase_23 AC 110 ms
53,564 KB
testcase_24 AC 107 ms
53,036 KB
testcase_25 AC 121 ms
54,108 KB
testcase_26 AC 163 ms
54,156 KB
testcase_27 AC 163 ms
54,236 KB
testcase_28 AC 165 ms
54,344 KB
testcase_29 AC 152 ms
54,236 KB
testcase_30 AC 165 ms
54,584 KB
testcase_31 AC 116 ms
53,960 KB
testcase_32 AC 104 ms
52,756 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    static int N;
    static int[] V = new int[1000];
    static int[] memo = new int[1000];
    
    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