結果

問題 No.45 回転寿司
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 15:25:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 3,361 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 42,908 KB
最終ジャッジ日時 2024-06-08 11:51:20
合計ジャッジ時間 10,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
42,096 KB
testcase_01 AC 165 ms
42,196 KB
testcase_02 AC 184 ms
42,612 KB
testcase_03 AC 192 ms
42,448 KB
testcase_04 AC 189 ms
42,140 KB
testcase_05 AC 145 ms
41,400 KB
testcase_06 AC 175 ms
42,324 KB
testcase_07 AC 188 ms
42,740 KB
testcase_08 AC 171 ms
41,880 KB
testcase_09 AC 196 ms
42,908 KB
testcase_10 AC 174 ms
42,380 KB
testcase_11 AC 149 ms
41,760 KB
testcase_12 AC 190 ms
42,464 KB
testcase_13 AC 141 ms
41,236 KB
testcase_14 AC 145 ms
41,592 KB
testcase_15 AC 178 ms
42,512 KB
testcase_16 AC 165 ms
41,812 KB
testcase_17 AC 184 ms
42,136 KB
testcase_18 AC 165 ms
41,872 KB
testcase_19 AC 183 ms
42,540 KB
testcase_20 AC 144 ms
41,672 KB
testcase_21 AC 145 ms
41,732 KB
testcase_22 AC 135 ms
41,516 KB
testcase_23 AC 132 ms
41,588 KB
testcase_24 AC 145 ms
41,720 KB
testcase_25 AC 138 ms
41,796 KB
testcase_26 AC 184 ms
41,892 KB
testcase_27 AC 189 ms
42,624 KB
testcase_28 AC 178 ms
42,440 KB
testcase_29 AC 185 ms
42,316 KB
testcase_30 AC 178 ms
42,240 KB
testcase_31 AC 134 ms
41,344 KB
testcase_32 AC 130 ms
41,524 KB
testcase_33 AC 188 ms
42,568 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