結果

問題 No.45 回転寿司
ユーザー 37zigen37zigen
提出日時 2016-03-25 19:24:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 43,036 KB
最終ジャッジ日時 2024-06-08 10:13:36
合計ジャッジ時間 9,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
42,132 KB
testcase_01 AC 183 ms
42,596 KB
testcase_02 AC 199 ms
42,384 KB
testcase_03 AC 186 ms
42,512 KB
testcase_04 AC 192 ms
42,500 KB
testcase_05 AC 150 ms
41,772 KB
testcase_06 AC 182 ms
42,616 KB
testcase_07 AC 189 ms
42,736 KB
testcase_08 AC 177 ms
42,492 KB
testcase_09 AC 189 ms
43,036 KB
testcase_10 AC 176 ms
42,008 KB
testcase_11 AC 159 ms
41,828 KB
testcase_12 AC 186 ms
42,612 KB
testcase_13 AC 152 ms
41,612 KB
testcase_14 AC 143 ms
41,344 KB
testcase_15 AC 181 ms
42,396 KB
testcase_16 AC 158 ms
42,040 KB
testcase_17 AC 178 ms
42,080 KB
testcase_18 AC 170 ms
42,000 KB
testcase_19 AC 196 ms
42,448 KB
testcase_20 AC 139 ms
41,460 KB
testcase_21 AC 139 ms
41,812 KB
testcase_22 AC 134 ms
41,588 KB
testcase_23 AC 135 ms
41,800 KB
testcase_24 AC 135 ms
41,220 KB
testcase_25 AC 133 ms
41,352 KB
testcase_26 AC 176 ms
42,692 KB
testcase_27 AC 170 ms
42,284 KB
testcase_28 AC 180 ms
42,196 KB
testcase_29 AC 183 ms
42,640 KB
testcase_30 AC 185 ms
42,580 KB
testcase_31 AC 133 ms
41,876 KB
testcase_32 AC 134 ms
41,568 KB
testcase_33 AC 198 ms
42,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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