結果

問題 No.45 回転寿司
ユーザー GrenacheGrenache
提出日時 2015-07-01 10:39:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 4,738 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 42,128 KB
最終ジャッジ日時 2024-12-27 11:52:04
合計ジャッジ時間 12,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
41,756 KB
testcase_01 AC 168 ms
41,520 KB
testcase_02 AC 172 ms
41,868 KB
testcase_03 AC 193 ms
42,040 KB
testcase_04 AC 194 ms
41,700 KB
testcase_05 AC 160 ms
41,356 KB
testcase_06 AC 194 ms
41,912 KB
testcase_07 AC 201 ms
41,944 KB
testcase_08 AC 185 ms
41,208 KB
testcase_09 AC 203 ms
41,812 KB
testcase_10 AC 193 ms
41,784 KB
testcase_11 AC 162 ms
41,348 KB
testcase_12 AC 190 ms
41,904 KB
testcase_13 AC 150 ms
41,064 KB
testcase_14 AC 155 ms
41,040 KB
testcase_15 AC 190 ms
41,316 KB
testcase_16 AC 156 ms
41,432 KB
testcase_17 AC 167 ms
41,324 KB
testcase_18 AC 164 ms
41,240 KB
testcase_19 AC 186 ms
41,900 KB
testcase_20 AC 158 ms
41,080 KB
testcase_21 AC 150 ms
41,028 KB
testcase_22 AC 141 ms
40,948 KB
testcase_23 AC 144 ms
41,000 KB
testcase_24 AC 137 ms
41,116 KB
testcase_25 AC 134 ms
40,812 KB
testcase_26 AC 185 ms
41,400 KB
testcase_27 AC 185 ms
41,928 KB
testcase_28 AC 176 ms
41,684 KB
testcase_29 AC 217 ms
41,852 KB
testcase_30 AC 238 ms
41,768 KB
testcase_31 AC 185 ms
41,136 KB
testcase_32 AC 171 ms
41,068 KB
testcase_33 AC 253 ms
42,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder45 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] v = new int[n];
        for (int i = 0; i < n; i++) {
        	v[i] = sc.nextInt();
        }

        int[] dp = new int[n];
        int max = 0;
        for (int i = 0; i < n; i++) {
        	dp[i] = v[i];
        	
        	for (int j = Math.max(0, i - 3); j < i - 1; j++) {
        		dp[i] = Math.max(dp[i], dp[j] + v[i]);
        	}
        	max = Math.max(max, dp[i]);
        }

        System.out.println(max);
        
        sc.close();
    }
}
0