結果

問題 No.45 回転寿司
ユーザー kou6839kou6839
提出日時 2014-11-22 19:18:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 3,311 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-12-27 11:02:26
合計ジャッジ時間 12,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
41,660 KB
testcase_01 AC 231 ms
41,712 KB
testcase_02 AC 229 ms
41,980 KB
testcase_03 AC 224 ms
41,912 KB
testcase_04 AC 217 ms
41,476 KB
testcase_05 AC 179 ms
41,104 KB
testcase_06 AC 225 ms
41,608 KB
testcase_07 AC 223 ms
41,892 KB
testcase_08 AC 200 ms
41,148 KB
testcase_09 AC 238 ms
41,716 KB
testcase_10 AC 213 ms
41,264 KB
testcase_11 AC 192 ms
41,340 KB
testcase_12 AC 221 ms
41,972 KB
testcase_13 AC 172 ms
41,160 KB
testcase_14 AC 177 ms
40,956 KB
testcase_15 AC 216 ms
41,420 KB
testcase_16 AC 199 ms
41,556 KB
testcase_17 AC 218 ms
41,620 KB
testcase_18 AC 215 ms
41,260 KB
testcase_19 AC 222 ms
41,864 KB
testcase_20 AC 180 ms
41,280 KB
testcase_21 AC 173 ms
41,000 KB
testcase_22 AC 145 ms
39,916 KB
testcase_23 AC 165 ms
40,792 KB
testcase_24 AC 164 ms
40,988 KB
testcase_25 AC 153 ms
40,872 KB
testcase_26 AC 218 ms
41,840 KB
testcase_27 AC 230 ms
41,840 KB
testcase_28 AC 221 ms
41,528 KB
testcase_29 AC 208 ms
41,776 KB
testcase_30 AC 198 ms
41,880 KB
testcase_31 AC 157 ms
40,988 KB
testcase_32 AC 168 ms
40,828 KB
testcase_33 AC 243 ms
41,984 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