結果

問題 No.45 回転寿司
ユーザー ぴろずぴろず
提出日時 2014-12-15 15:58:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 42,308 KB
最終ジャッジ日時 2024-06-08 09:28:19
合計ジャッジ時間 8,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
41,752 KB
testcase_01 AC 166 ms
42,028 KB
testcase_02 AC 162 ms
41,984 KB
testcase_03 AC 179 ms
42,168 KB
testcase_04 AC 160 ms
41,956 KB
testcase_05 AC 132 ms
41,528 KB
testcase_06 AC 162 ms
41,768 KB
testcase_07 AC 175 ms
42,248 KB
testcase_08 AC 149 ms
41,500 KB
testcase_09 AC 187 ms
42,308 KB
testcase_10 AC 164 ms
41,780 KB
testcase_11 AC 149 ms
41,528 KB
testcase_12 AC 171 ms
42,140 KB
testcase_13 AC 131 ms
41,532 KB
testcase_14 AC 132 ms
41,676 KB
testcase_15 AC 161 ms
41,868 KB
testcase_16 AC 158 ms
41,764 KB
testcase_17 AC 155 ms
41,504 KB
testcase_18 AC 145 ms
41,660 KB
testcase_19 AC 164 ms
42,124 KB
testcase_20 AC 130 ms
41,400 KB
testcase_21 AC 130 ms
41,580 KB
testcase_22 AC 119 ms
41,120 KB
testcase_23 AC 123 ms
41,328 KB
testcase_24 AC 124 ms
41,428 KB
testcase_25 AC 118 ms
41,316 KB
testcase_26 AC 161 ms
41,588 KB
testcase_27 AC 172 ms
41,968 KB
testcase_28 AC 162 ms
42,268 KB
testcase_29 AC 162 ms
42,036 KB
testcase_30 AC 155 ms
41,892 KB
testcase_31 AC 111 ms
40,932 KB
testcase_32 AC 115 ms
40,960 KB
testcase_33 AC 160 ms
42,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no045;

import java.util.Scanner;

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

}
0