結果

問題 No.45 回転寿司
ユーザー GrenacheGrenache
提出日時 2015-07-01 10:39:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 4,086 ms
コンパイル使用メモリ 78,200 KB
実行使用メモリ 42,588 KB
最終ジャッジ日時 2024-06-08 09:44:40
合計ジャッジ時間 10,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
41,664 KB
testcase_01 AC 188 ms
42,124 KB
testcase_02 AC 195 ms
42,516 KB
testcase_03 AC 194 ms
42,412 KB
testcase_04 AC 190 ms
42,248 KB
testcase_05 AC 150 ms
41,460 KB
testcase_06 AC 179 ms
41,924 KB
testcase_07 AC 184 ms
42,152 KB
testcase_08 AC 169 ms
41,772 KB
testcase_09 AC 189 ms
42,100 KB
testcase_10 AC 164 ms
41,876 KB
testcase_11 AC 148 ms
41,656 KB
testcase_12 AC 181 ms
42,144 KB
testcase_13 AC 142 ms
41,156 KB
testcase_14 AC 142 ms
41,540 KB
testcase_15 AC 175 ms
41,852 KB
testcase_16 AC 163 ms
41,572 KB
testcase_17 AC 175 ms
41,872 KB
testcase_18 AC 158 ms
41,772 KB
testcase_19 AC 187 ms
42,340 KB
testcase_20 AC 140 ms
41,344 KB
testcase_21 AC 142 ms
41,260 KB
testcase_22 AC 132 ms
41,672 KB
testcase_23 AC 116 ms
41,460 KB
testcase_24 AC 134 ms
41,468 KB
testcase_25 AC 134 ms
41,140 KB
testcase_26 AC 182 ms
41,852 KB
testcase_27 AC 188 ms
42,588 KB
testcase_28 AC 180 ms
42,160 KB
testcase_29 AC 189 ms
41,976 KB
testcase_30 AC 179 ms
42,116 KB
testcase_31 AC 134 ms
41,600 KB
testcase_32 AC 134 ms
41,264 KB
testcase_33 AC 185 ms
42,496 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