結果

問題 No.45 回転寿司
ユーザー htensaihtensai
提出日時 2020-05-07 13:16:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 78,340 KB
実行使用メモリ 42,776 KB
最終ジャッジ日時 2024-07-03 09:23:55
合計ジャッジ時間 7,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,104 KB
testcase_01 AC 153 ms
42,484 KB
testcase_02 AC 159 ms
42,480 KB
testcase_03 AC 162 ms
42,284 KB
testcase_04 AC 155 ms
41,896 KB
testcase_05 AC 123 ms
41,476 KB
testcase_06 AC 153 ms
42,080 KB
testcase_07 AC 164 ms
42,612 KB
testcase_08 AC 139 ms
41,588 KB
testcase_09 AC 156 ms
42,388 KB
testcase_10 AC 151 ms
41,728 KB
testcase_11 AC 128 ms
41,548 KB
testcase_12 AC 167 ms
42,168 KB
testcase_13 AC 132 ms
41,728 KB
testcase_14 AC 132 ms
41,356 KB
testcase_15 AC 152 ms
41,756 KB
testcase_16 AC 143 ms
41,876 KB
testcase_17 AC 149 ms
42,036 KB
testcase_18 AC 143 ms
41,664 KB
testcase_19 AC 158 ms
42,032 KB
testcase_20 AC 128 ms
41,628 KB
testcase_21 AC 132 ms
41,320 KB
testcase_22 AC 112 ms
41,260 KB
testcase_23 AC 123 ms
41,236 KB
testcase_24 AC 118 ms
41,240 KB
testcase_25 AC 118 ms
41,248 KB
testcase_26 AC 148 ms
42,052 KB
testcase_27 AC 154 ms
42,028 KB
testcase_28 AC 153 ms
41,580 KB
testcase_29 AC 156 ms
42,276 KB
testcase_30 AC 161 ms
42,172 KB
testcase_31 AC 116 ms
41,368 KB
testcase_32 AC 110 ms
41,148 KB
testcase_33 AC 169 ms
42,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] dp = new int[n + 3];
		for (int i = 3; i < n + 3; i++) {
		    int x = sc.nextInt();
		    dp[i] = Math.max(dp[i - 2], dp[i - 3]) + x;
		}
		System.out.println(Math.max(dp[n + 2], dp[n + 1]));
	}
}
0