結果

問題 No.45 回転寿司
ユーザー bambambambam
提出日時 2019-08-22 11:46:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 77,452 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-10-12 04:24:35
合計ジャッジ時間 7,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,144 KB
testcase_01 AC 154 ms
54,432 KB
testcase_02 AC 167 ms
54,332 KB
testcase_03 AC 162 ms
54,084 KB
testcase_04 AC 155 ms
54,332 KB
testcase_05 AC 126 ms
54,172 KB
testcase_06 AC 152 ms
54,236 KB
testcase_07 AC 158 ms
54,308 KB
testcase_08 AC 152 ms
54,080 KB
testcase_09 AC 165 ms
54,396 KB
testcase_10 AC 153 ms
54,176 KB
testcase_11 AC 131 ms
54,212 KB
testcase_12 AC 154 ms
54,224 KB
testcase_13 AC 125 ms
54,140 KB
testcase_14 AC 128 ms
54,184 KB
testcase_15 AC 155 ms
54,148 KB
testcase_16 AC 140 ms
54,160 KB
testcase_17 AC 153 ms
53,912 KB
testcase_18 AC 136 ms
54,072 KB
testcase_19 AC 165 ms
54,436 KB
testcase_20 AC 122 ms
54,052 KB
testcase_21 AC 134 ms
53,988 KB
testcase_22 AC 104 ms
52,936 KB
testcase_23 AC 103 ms
52,940 KB
testcase_24 AC 104 ms
52,688 KB
testcase_25 AC 120 ms
54,040 KB
testcase_26 AC 157 ms
54,344 KB
testcase_27 AC 158 ms
54,248 KB
testcase_28 AC 162 ms
54,220 KB
testcase_29 AC 154 ms
54,384 KB
testcase_30 AC 157 ms
54,268 KB
testcase_31 AC 103 ms
52,908 KB
testcase_32 AC 104 ms
52,912 KB
testcase_33 AC 170 ms
54,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static boolean memo[];
	static int ans, min;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		int n = sc.nextInt();
		if (n > 1) {
			int[] dp = new int[n];
			int[] v = new int[n];
			for (int i = 0; i < n; i++) {
				v[i] = sc.nextInt();
			}
			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]);
			}
			int max = 0;
			for (int i = 0; i < n; i++) {
				max = Math.max(max, dp[i]);
			}
			System.out.println(max);
		} else {
			int v = sc.nextInt();
			System.out.println(v);
		}

	}
}
0