結果

問題 No.45 回転寿司
ユーザー vektor_dnchrvektor_dnchr
提出日時 2016-11-07 03:30:20
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 650 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 122,996 KB
最終ジャッジ日時 2024-11-25 03:35:45
合計ジャッジ時間 178,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 OLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 OLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 OLE -
testcase_14 TLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 OLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 OLE -
testcase_27 OLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    static int N;
    static int[] V = new int[1000];
    
    public static int  rec(int i){
        int ret;
        if(i >= N){ret = 0;}
        else{
            ret = Math.max(rec(i+1), rec(i+2)+V[i]);
            System.out.println(rec(i+1)+ " " +(rec(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();
        System.out.println(rec(0));
        
        
    }
}
0