結果

問題 No.45 回転寿司
ユーザー YamaKasaYamaKasa
提出日時 2018-06-24 00:38:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 567 bytes
コンパイル時間 3,504 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 42,532 KB
最終ジャッジ日時 2024-06-08 12:19:05
合計ジャッジ時間 9,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
41,964 KB
testcase_01 AC 157 ms
41,548 KB
testcase_02 AC 167 ms
42,156 KB
testcase_03 AC 169 ms
42,500 KB
testcase_04 AC 164 ms
41,972 KB
testcase_05 AC 127 ms
41,148 KB
testcase_06 AC 162 ms
41,888 KB
testcase_07 AC 181 ms
42,236 KB
testcase_08 AC 156 ms
41,976 KB
testcase_09 AC 173 ms
42,112 KB
testcase_10 AC 162 ms
41,788 KB
testcase_11 AC 128 ms
40,600 KB
testcase_12 AC 165 ms
41,948 KB
testcase_13 AC 130 ms
41,580 KB
testcase_14 AC 131 ms
41,496 KB
testcase_15 AC 154 ms
41,696 KB
testcase_16 AC 144 ms
41,972 KB
testcase_17 AC 158 ms
41,708 KB
testcase_18 AC 157 ms
41,812 KB
testcase_19 AC 170 ms
41,708 KB
testcase_20 AC 140 ms
41,552 KB
testcase_21 AC 131 ms
41,372 KB
testcase_22 AC 120 ms
41,096 KB
testcase_23 AC 109 ms
39,784 KB
testcase_24 AC 110 ms
39,788 KB
testcase_25 AC 129 ms
41,724 KB
testcase_26 AC 166 ms
41,756 KB
testcase_27 AC 169 ms
42,168 KB
testcase_28 AC 165 ms
42,064 KB
testcase_29 AC 167 ms
42,172 KB
testcase_30 AC 164 ms
42,256 KB
testcase_31 AC 123 ms
41,412 KB
testcase_32 AC 117 ms
41,144 KB
testcase_33 AC 167 ms
42,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []V = new int[N];
		for(int i = 0; i < N; i++) {
			V[i] = scan.nextInt();
		}
		scan.close();
		if(N == 1) {
			System.out.println(V[0]);
			System.exit(0);
		}
		int []dp = new int[N];
		Arrays.fill(dp, 0);
		dp[0] = V[0];
		dp[1] = Math.max(V[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