結果

問題 No.45 回転寿司
ユーザー kou6839kou6839
提出日時 2014-11-22 19:18:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 42,784 KB
最終ジャッジ日時 2024-06-08 09:24:32
合計ジャッジ時間 9,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
41,836 KB
testcase_01 AC 169 ms
41,980 KB
testcase_02 AC 183 ms
42,412 KB
testcase_03 AC 184 ms
42,148 KB
testcase_04 AC 181 ms
41,960 KB
testcase_05 AC 143 ms
41,632 KB
testcase_06 AC 179 ms
41,856 KB
testcase_07 AC 193 ms
42,076 KB
testcase_08 AC 167 ms
41,828 KB
testcase_09 AC 188 ms
42,012 KB
testcase_10 AC 176 ms
42,080 KB
testcase_11 AC 150 ms
41,524 KB
testcase_12 AC 189 ms
42,328 KB
testcase_13 AC 144 ms
41,640 KB
testcase_14 AC 142 ms
41,724 KB
testcase_15 AC 183 ms
42,116 KB
testcase_16 AC 167 ms
41,580 KB
testcase_17 AC 165 ms
41,960 KB
testcase_18 AC 169 ms
41,716 KB
testcase_19 AC 179 ms
42,304 KB
testcase_20 AC 138 ms
41,312 KB
testcase_21 AC 142 ms
41,520 KB
testcase_22 AC 130 ms
41,408 KB
testcase_23 AC 117 ms
40,420 KB
testcase_24 AC 135 ms
41,352 KB
testcase_25 AC 135 ms
41,892 KB
testcase_26 AC 182 ms
41,864 KB
testcase_27 AC 181 ms
42,044 KB
testcase_28 AC 177 ms
42,340 KB
testcase_29 AC 178 ms
41,948 KB
testcase_30 AC 186 ms
42,364 KB
testcase_31 AC 131 ms
41,220 KB
testcase_32 AC 132 ms
41,280 KB
testcase_33 AC 185 ms
42,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] susi=new int[n];
		int[] dp = new int[n];
		for(int i=0;i<n;i++){
			susi[i]=sc.nextInt();
		}
		dp[0]=susi[0];
		if(n==1){
			System.out.println(dp[0]);
			return;
		}
		dp[1]=Math.max(susi[0],susi[1]);
		if(n==2){
			System.out.println(dp[1]);
			return;
		}
		for(int i=2;i<n;i++){
			dp[i]=Math.max(dp[i-1],dp[i-2]+susi[i]);
		}
		System.out.println(dp[n-1]);
	}
}	
0