結果

問題 No.45 回転寿司
ユーザー rn4rurn4ru
提出日時 2016-04-14 06:51:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 4,657 ms
コンパイル使用メモリ 73,664 KB
実行使用メモリ 42,316 KB
最終ジャッジ日時 2024-12-27 13:15:54
合計ジャッジ時間 9,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
41,564 KB
testcase_01 AC 212 ms
41,980 KB
testcase_02 AC 217 ms
41,960 KB
testcase_03 AC 211 ms
42,316 KB
testcase_04 AC 197 ms
42,000 KB
testcase_05 AC 151 ms
41,156 KB
testcase_06 AC 188 ms
41,644 KB
testcase_07 AC 214 ms
42,208 KB
testcase_08 AC 178 ms
41,076 KB
testcase_09 AC 209 ms
42,308 KB
testcase_10 AC 184 ms
41,640 KB
testcase_11 AC 141 ms
41,196 KB
testcase_12 AC 205 ms
42,112 KB
testcase_13 AC 149 ms
40,868 KB
testcase_14 AC 132 ms
40,284 KB
testcase_15 AC 185 ms
41,404 KB
testcase_16 AC 173 ms
41,412 KB
testcase_17 AC 180 ms
41,512 KB
testcase_18 AC 171 ms
41,336 KB
testcase_19 AC 196 ms
41,796 KB
testcase_20 AC 136 ms
40,748 KB
testcase_21 AC 136 ms
40,616 KB
testcase_22 AC 125 ms
40,500 KB
testcase_23 AC 131 ms
40,940 KB
testcase_24 AC 120 ms
39,916 KB
testcase_25 AC 132 ms
40,644 KB
testcase_26 AC 182 ms
41,424 KB
testcase_27 AC 208 ms
41,964 KB
testcase_28 AC 186 ms
41,540 KB
testcase_29 AC 195 ms
41,820 KB
testcase_30 AC 192 ms
42,100 KB
testcase_31 AC 131 ms
40,904 KB
testcase_32 AC 136 ms
40,612 KB
testcase_33 AC 213 ms
42,272 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