結果

問題 No.45 回転寿司
ユーザー wildwild
提出日時 2017-05-04 21:25:06
言語 Java
(openjdk 23)
結果
AC  
実行時間 236 ms / 5,000 ms
コード長 593 bytes
コンパイル時間 3,485 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 42,100 KB
最終ジャッジ日時 2024-12-27 16:18:52
合計ジャッジ時間 12,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
41,464 KB
testcase_01 AC 221 ms
41,708 KB
testcase_02 AC 228 ms
41,848 KB
testcase_03 AC 225 ms
42,076 KB
testcase_04 AC 225 ms
41,680 KB
testcase_05 AC 168 ms
40,900 KB
testcase_06 AC 220 ms
41,532 KB
testcase_07 AC 214 ms
41,932 KB
testcase_08 AC 204 ms
41,516 KB
testcase_09 AC 236 ms
42,100 KB
testcase_10 AC 224 ms
41,948 KB
testcase_11 AC 193 ms
41,284 KB
testcase_12 AC 225 ms
42,008 KB
testcase_13 AC 172 ms
41,116 KB
testcase_14 AC 171 ms
41,080 KB
testcase_15 AC 219 ms
41,612 KB
testcase_16 AC 208 ms
41,804 KB
testcase_17 AC 226 ms
41,580 KB
testcase_18 AC 193 ms
41,300 KB
testcase_19 AC 228 ms
41,676 KB
testcase_20 AC 179 ms
41,292 KB
testcase_21 AC 176 ms
40,880 KB
testcase_22 AC 165 ms
41,180 KB
testcase_23 AC 167 ms
40,992 KB
testcase_24 AC 165 ms
40,896 KB
testcase_25 AC 169 ms
41,000 KB
testcase_26 AC 222 ms
41,228 KB
testcase_27 AC 228 ms
41,888 KB
testcase_28 AC 217 ms
41,572 KB
testcase_29 AC 228 ms
41,668 KB
testcase_30 AC 228 ms
41,752 KB
testcase_31 AC 165 ms
41,196 KB
testcase_32 AC 160 ms
40,976 KB
testcase_33 AC 232 ms
42,100 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