結果

問題 No.45 回転寿司
ユーザー amyuamyu
提出日時 2017-12-01 11:16:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 199 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 4,617 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 42,188 KB
最終ジャッジ日時 2024-12-27 17:41:08
合計ジャッジ時間 9,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
41,604 KB
testcase_01 AC 183 ms
41,596 KB
testcase_02 AC 188 ms
42,092 KB
testcase_03 AC 199 ms
42,100 KB
testcase_04 AC 175 ms
41,484 KB
testcase_05 AC 157 ms
40,916 KB
testcase_06 AC 188 ms
41,684 KB
testcase_07 AC 165 ms
41,816 KB
testcase_08 AC 152 ms
41,544 KB
testcase_09 AC 192 ms
42,188 KB
testcase_10 AC 174 ms
41,608 KB
testcase_11 AC 153 ms
41,108 KB
testcase_12 AC 189 ms
41,868 KB
testcase_13 AC 146 ms
41,448 KB
testcase_14 AC 148 ms
40,820 KB
testcase_15 AC 166 ms
41,672 KB
testcase_16 AC 158 ms
41,332 KB
testcase_17 AC 164 ms
41,544 KB
testcase_18 AC 158 ms
41,316 KB
testcase_19 AC 181 ms
41,808 KB
testcase_20 AC 136 ms
41,072 KB
testcase_21 AC 138 ms
41,124 KB
testcase_22 AC 120 ms
39,704 KB
testcase_23 AC 132 ms
40,908 KB
testcase_24 AC 130 ms
39,892 KB
testcase_25 AC 131 ms
40,884 KB
testcase_26 AC 178 ms
41,496 KB
testcase_27 AC 182 ms
41,868 KB
testcase_28 AC 188 ms
41,668 KB
testcase_29 AC 164 ms
41,800 KB
testcase_30 AC 177 ms
41,864 KB
testcase_31 AC 129 ms
40,944 KB
testcase_32 AC 134 ms
40,912 KB
testcase_33 AC 194 ms
41,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main{
	public static void main(String[] args){
		solve();
	}
	public static void solve(){
		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];
		dp[0] = v[0];
		for(int i=1;i<n;i++){
			if(i==1){
				dp[i] = Math.max(v[i],v[i-1]);
			}
			else{
				dp[i] = Math.max(dp[i-2]+v[i],dp[i-1]);
			}
		}
		System.out.println(dp[n-1]);
	}
}
0