結果

問題 No.45 回転寿司
ユーザー rn4rurn4ru
提出日時 2016-04-14 06:51:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 42,872 KB
最終ジャッジ日時 2024-06-08 10:20:24
合計ジャッジ時間 9,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
42,080 KB
testcase_01 AC 195 ms
42,464 KB
testcase_02 AC 204 ms
42,516 KB
testcase_03 AC 207 ms
42,872 KB
testcase_04 AC 193 ms
42,032 KB
testcase_05 AC 147 ms
41,744 KB
testcase_06 AC 192 ms
42,140 KB
testcase_07 AC 207 ms
42,580 KB
testcase_08 AC 160 ms
41,684 KB
testcase_09 AC 203 ms
42,484 KB
testcase_10 AC 188 ms
42,048 KB
testcase_11 AC 151 ms
41,920 KB
testcase_12 AC 193 ms
42,612 KB
testcase_13 AC 143 ms
41,876 KB
testcase_14 AC 139 ms
41,480 KB
testcase_15 AC 189 ms
42,080 KB
testcase_16 AC 161 ms
41,588 KB
testcase_17 AC 186 ms
41,928 KB
testcase_18 AC 168 ms
41,864 KB
testcase_19 AC 196 ms
42,280 KB
testcase_20 AC 140 ms
41,364 KB
testcase_21 AC 141 ms
41,384 KB
testcase_22 AC 134 ms
41,144 KB
testcase_23 AC 133 ms
41,532 KB
testcase_24 AC 134 ms
41,536 KB
testcase_25 AC 134 ms
41,276 KB
testcase_26 AC 185 ms
42,172 KB
testcase_27 AC 195 ms
42,180 KB
testcase_28 AC 193 ms
42,160 KB
testcase_29 AC 187 ms
42,032 KB
testcase_30 AC 195 ms
42,664 KB
testcase_31 AC 132 ms
41,120 KB
testcase_32 AC 133 ms
41,588 KB
testcase_33 AC 208 ms
42,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int N = scanner.nextInt();
		int[] V = new int[N + 1];

		for (int i = 1; i <= N; i++) {
			V[i] = scanner.nextInt();
		}

		int[] dp = new int[N + 1];
		dp[1] = V[1];
		for (int i = 2; i <= N; i++) {
			int max = dp[i - 1];
			for (int j = 0; j < i - 1; j++) {
				max = Math.max(max, dp[j] + V[i]);
			}
			dp[i] = max;
		}

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

}
0