結果

問題 No.45 回転寿司
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 15:25:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 5,416 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 42,256 KB
最終ジャッジ日時 2024-12-27 18:01:23
合計ジャッジ時間 10,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
41,760 KB
testcase_01 AC 188 ms
41,668 KB
testcase_02 AC 190 ms
41,856 KB
testcase_03 AC 197 ms
42,252 KB
testcase_04 AC 191 ms
41,720 KB
testcase_05 AC 149 ms
41,404 KB
testcase_06 AC 184 ms
41,648 KB
testcase_07 AC 196 ms
42,256 KB
testcase_08 AC 160 ms
41,200 KB
testcase_09 AC 193 ms
42,248 KB
testcase_10 AC 178 ms
41,740 KB
testcase_11 AC 163 ms
41,196 KB
testcase_12 AC 193 ms
41,996 KB
testcase_13 AC 146 ms
41,360 KB
testcase_14 AC 147 ms
41,472 KB
testcase_15 AC 175 ms
41,996 KB
testcase_16 AC 170 ms
41,448 KB
testcase_17 AC 181 ms
41,448 KB
testcase_18 AC 170 ms
41,428 KB
testcase_19 AC 189 ms
42,096 KB
testcase_20 AC 127 ms
41,344 KB
testcase_21 AC 149 ms
41,340 KB
testcase_22 AC 138 ms
41,012 KB
testcase_23 AC 133 ms
40,992 KB
testcase_24 AC 137 ms
40,932 KB
testcase_25 AC 135 ms
41,212 KB
testcase_26 AC 172 ms
41,860 KB
testcase_27 AC 191 ms
41,824 KB
testcase_28 AC 179 ms
41,840 KB
testcase_29 AC 189 ms
42,248 KB
testcase_30 AC 186 ms
41,988 KB
testcase_31 AC 140 ms
41,528 KB
testcase_32 AC 135 ms
41,204 KB
testcase_33 AC 196 ms
42,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No45 {
	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];
		dp[0] = V[0];
		if(N >= 2) {
			dp[1] = Math.max(dp[0],V[1]);
		}
		
		for(int i = 2;i < N;i++) {
			dp[i] = Math.max(dp[i-1],dp[i-2]+V[i]);
		}
		
		System.out.println(dp[N-1]);
	}
}
0