結果

問題 No.45 回転寿司
ユーザー kano_townkano_town
提出日時 2014-12-08 21:47:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 3,166 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-06-08 09:26:50
合計ジャッジ時間 9,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
41,744 KB
testcase_01 AC 163 ms
42,036 KB
testcase_02 AC 158 ms
42,352 KB
testcase_03 AC 158 ms
41,736 KB
testcase_04 AC 169 ms
42,044 KB
testcase_05 AC 118 ms
40,504 KB
testcase_06 AC 163 ms
41,780 KB
testcase_07 AC 168 ms
42,124 KB
testcase_08 AC 140 ms
41,436 KB
testcase_09 AC 171 ms
42,364 KB
testcase_10 AC 161 ms
41,692 KB
testcase_11 AC 143 ms
41,108 KB
testcase_12 AC 171 ms
42,124 KB
testcase_13 AC 134 ms
41,400 KB
testcase_14 AC 123 ms
41,532 KB
testcase_15 AC 160 ms
41,576 KB
testcase_16 AC 150 ms
41,708 KB
testcase_17 AC 164 ms
41,496 KB
testcase_18 AC 145 ms
41,612 KB
testcase_19 AC 170 ms
41,780 KB
testcase_20 AC 125 ms
41,000 KB
testcase_21 AC 130 ms
41,204 KB
testcase_22 AC 106 ms
40,028 KB
testcase_23 AC 114 ms
41,100 KB
testcase_24 AC 119 ms
41,012 KB
testcase_25 AC 119 ms
40,976 KB
testcase_26 AC 163 ms
41,956 KB
testcase_27 AC 162 ms
42,248 KB
testcase_28 AC 161 ms
41,664 KB
testcase_29 AC 152 ms
41,912 KB
testcase_30 AC 170 ms
41,952 KB
testcase_31 AC 123 ms
41,380 KB
testcase_32 AC 121 ms
41,392 KB
testcase_33 AC 169 ms
42,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder45 {

	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 + 1];

		dp[0] = v[0];
		if (n > 1) dp[1] = Math.max(v[0], v[1]);
		for (int i = 2; i < n; i++) {
			dp[i] = Math.max(dp[i - 2] + v[i], dp[i - 1]);
		}
		System.out.println(dp[n - 1]);
	}
}
0