結果

問題 No.45 回転寿司
ユーザー nCk_cvnCk_cv
提出日時 2016-02-17 16:43:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 75,324 KB
実行使用メモリ 42,076 KB
最終ジャッジ日時 2024-12-27 12:55:36
合計ジャッジ時間 9,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
41,568 KB
testcase_01 AC 158 ms
41,636 KB
testcase_02 AC 186 ms
41,696 KB
testcase_03 AC 185 ms
41,796 KB
testcase_04 AC 189 ms
42,024 KB
testcase_05 AC 136 ms
40,888 KB
testcase_06 AC 179 ms
41,424 KB
testcase_07 AC 179 ms
41,768 KB
testcase_08 AC 144 ms
41,072 KB
testcase_09 AC 167 ms
41,984 KB
testcase_10 AC 163 ms
41,140 KB
testcase_11 AC 151 ms
40,904 KB
testcase_12 AC 172 ms
41,292 KB
testcase_13 AC 139 ms
41,016 KB
testcase_14 AC 133 ms
40,532 KB
testcase_15 AC 177 ms
41,564 KB
testcase_16 AC 153 ms
41,268 KB
testcase_17 AC 164 ms
41,452 KB
testcase_18 AC 151 ms
41,104 KB
testcase_19 AC 175 ms
41,656 KB
testcase_20 AC 133 ms
40,628 KB
testcase_21 AC 145 ms
41,004 KB
testcase_22 AC 126 ms
39,932 KB
testcase_23 AC 125 ms
41,036 KB
testcase_24 AC 133 ms
40,952 KB
testcase_25 AC 129 ms
40,880 KB
testcase_26 AC 166 ms
42,076 KB
testcase_27 AC 181 ms
41,644 KB
testcase_28 AC 174 ms
41,172 KB
testcase_29 AC 172 ms
41,676 KB
testcase_30 AC 179 ms
41,776 KB
testcase_31 AC 132 ms
40,904 KB
testcase_32 AC 118 ms
39,604 KB
testcase_33 AC 178 ms
41,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.awt.geom.*;
import java.io.*;
public class Main {
	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+2];
		for(int i = 0; i < N; i++) {
			dp[i+1] = Math.max(dp[i], dp[i+1]);
			dp[i+2] = Math.max(dp[i] + V[i], dp[i+2]);
		}
		dp[N+1] = Math.max(dp[N+1], dp[N]);
		System.out.println((dp[N+1]));
 	}
}
0