結果

問題 No.45 回転寿司
ユーザー wildwild
提出日時 2017-05-04 21:25:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 593 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 42,228 KB
最終ジャッジ日時 2024-06-08 11:17:17
合計ジャッジ時間 8,849 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,388 KB
testcase_01 AC 160 ms
41,852 KB
testcase_02 AC 165 ms
42,112 KB
testcase_03 AC 170 ms
41,896 KB
testcase_04 AC 172 ms
41,748 KB
testcase_05 AC 128 ms
41,148 KB
testcase_06 AC 169 ms
42,016 KB
testcase_07 AC 172 ms
42,228 KB
testcase_08 AC 143 ms
41,568 KB
testcase_09 AC 169 ms
41,904 KB
testcase_10 AC 167 ms
41,716 KB
testcase_11 AC 138 ms
41,088 KB
testcase_12 AC 168 ms
42,140 KB
testcase_13 AC 134 ms
41,624 KB
testcase_14 AC 127 ms
41,348 KB
testcase_15 AC 161 ms
41,544 KB
testcase_16 AC 147 ms
41,532 KB
testcase_17 AC 159 ms
41,592 KB
testcase_18 AC 152 ms
41,444 KB
testcase_19 AC 164 ms
42,024 KB
testcase_20 AC 125 ms
41,096 KB
testcase_21 AC 126 ms
41,204 KB
testcase_22 AC 117 ms
41,100 KB
testcase_23 AC 121 ms
41,108 KB
testcase_24 AC 109 ms
39,716 KB
testcase_25 AC 120 ms
41,228 KB
testcase_26 AC 148 ms
41,676 KB
testcase_27 AC 172 ms
41,948 KB
testcase_28 AC 158 ms
41,400 KB
testcase_29 AC 161 ms
41,868 KB
testcase_30 AC 160 ms
41,756 KB
testcase_31 AC 119 ms
41,276 KB
testcase_32 AC 115 ms
41,252 KB
testcase_33 AC 169 ms
42,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * Created by whiled on 17/05/04.
 */
public class Main {
    public static void main(String[] args){
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int[] v = new int[N];
        for (int i=0; i<N; i++) v[i] = scan.nextInt();

        int[] res = new int[N+1];

        res[0] = 0;
        res[1] = v[0];
        if (res.length > 2) res[2] = Math.max(v[0], v[1]);
        for (int i=2; i<res.length-1; i++){
            res[i+1] = Math.max(res[i], res[i-1] + v[i]);
        }

        System.out.println(res[N]);
    }


}
0