結果

問題 No.45 回転寿司
ユーザー nCk_cvnCk_cv
提出日時 2016-02-17 16:43:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 42,448 KB
最終ジャッジ日時 2024-06-08 10:12:21
合計ジャッジ時間 8,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,860 KB
testcase_01 AC 173 ms
42,040 KB
testcase_02 AC 175 ms
41,952 KB
testcase_03 AC 168 ms
42,132 KB
testcase_04 AC 164 ms
42,208 KB
testcase_05 AC 135 ms
41,600 KB
testcase_06 AC 157 ms
41,824 KB
testcase_07 AC 168 ms
41,996 KB
testcase_08 AC 156 ms
41,728 KB
testcase_09 AC 167 ms
42,176 KB
testcase_10 AC 152 ms
41,776 KB
testcase_11 AC 145 ms
41,296 KB
testcase_12 AC 175 ms
42,272 KB
testcase_13 AC 130 ms
41,180 KB
testcase_14 AC 129 ms
41,320 KB
testcase_15 AC 161 ms
42,208 KB
testcase_16 AC 154 ms
41,816 KB
testcase_17 AC 159 ms
41,672 KB
testcase_18 AC 152 ms
41,496 KB
testcase_19 AC 168 ms
41,800 KB
testcase_20 AC 128 ms
40,888 KB
testcase_21 AC 127 ms
41,384 KB
testcase_22 AC 120 ms
41,252 KB
testcase_23 AC 122 ms
41,092 KB
testcase_24 AC 124 ms
41,684 KB
testcase_25 AC 107 ms
39,968 KB
testcase_26 AC 155 ms
41,700 KB
testcase_27 AC 171 ms
42,432 KB
testcase_28 AC 163 ms
41,984 KB
testcase_29 AC 162 ms
41,744 KB
testcase_30 AC 166 ms
41,892 KB
testcase_31 AC 119 ms
40,932 KB
testcase_32 AC 107 ms
40,160 KB
testcase_33 AC 172 ms
42,448 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