結果

問題 No.45 回転寿司
ユーザー nCk_cvnCk_cv
提出日時 2016-02-17 16:42:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 1,889 ms
コンパイル使用メモリ 75,368 KB
実行使用メモリ 54,608 KB
最終ジャッジ日時 2024-11-24 11:16:38
合計ジャッジ時間 7,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,888 KB
testcase_01 AC 158 ms
41,760 KB
testcase_02 AC 148 ms
42,272 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 125 ms
41,544 KB
testcase_06 AC 162 ms
41,744 KB
testcase_07 WA -
testcase_08 AC 151 ms
41,520 KB
testcase_09 AC 161 ms
42,652 KB
testcase_10 AC 150 ms
41,728 KB
testcase_11 AC 128 ms
41,872 KB
testcase_12 WA -
testcase_13 AC 128 ms
41,508 KB
testcase_14 WA -
testcase_15 AC 155 ms
41,828 KB
testcase_16 AC 146 ms
41,372 KB
testcase_17 AC 169 ms
41,680 KB
testcase_18 AC 150 ms
41,268 KB
testcase_19 AC 153 ms
42,304 KB
testcase_20 AC 123 ms
41,208 KB
testcase_21 AC 126 ms
41,452 KB
testcase_22 AC 113 ms
41,312 KB
testcase_23 AC 115 ms
41,320 KB
testcase_24 AC 115 ms
41,088 KB
testcase_25 AC 117 ms
40,300 KB
testcase_26 AC 156 ms
41,612 KB
testcase_27 AC 159 ms
42,092 KB
testcase_28 AC 143 ms
41,960 KB
testcase_29 WA -
testcase_30 AC 152 ms
41,972 KB
testcase_31 AC 106 ms
41,092 KB
testcase_32 WA -
testcase_33 AC 162 ms
42,476 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]);
		}
		System.out.println((dp[N+1]));
 	}
}
0