結果

問題 No.45 回転寿司
ユーザー k_kadorak_kadora
提出日時 2015-06-22 22:52:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 5,000 ms
コード長 546 bytes
コンパイル時間 4,308 ms
コンパイル使用メモリ 77,528 KB
実行使用メモリ 42,560 KB
最終ジャッジ日時 2024-06-08 09:41:43
合計ジャッジ時間 9,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
41,812 KB
testcase_01 AC 159 ms
41,580 KB
testcase_02 AC 154 ms
42,016 KB
testcase_03 AC 174 ms
42,340 KB
testcase_04 AC 168 ms
42,100 KB
testcase_05 AC 126 ms
41,104 KB
testcase_06 AC 161 ms
42,204 KB
testcase_07 AC 164 ms
41,924 KB
testcase_08 AC 147 ms
41,508 KB
testcase_09 AC 164 ms
42,560 KB
testcase_10 AC 161 ms
41,796 KB
testcase_11 AC 144 ms
41,460 KB
testcase_12 AC 176 ms
42,464 KB
testcase_13 AC 129 ms
41,608 KB
testcase_14 AC 128 ms
41,060 KB
testcase_15 AC 161 ms
42,012 KB
testcase_16 AC 150 ms
41,672 KB
testcase_17 AC 155 ms
41,664 KB
testcase_18 AC 154 ms
41,528 KB
testcase_19 AC 173 ms
42,128 KB
testcase_20 AC 126 ms
41,252 KB
testcase_21 AC 133 ms
41,268 KB
testcase_22 AC 128 ms
40,924 KB
testcase_23 AC 116 ms
41,124 KB
testcase_24 AC 112 ms
40,248 KB
testcase_25 AC 110 ms
39,972 KB
testcase_26 AC 150 ms
41,528 KB
testcase_27 AC 170 ms
42,060 KB
testcase_28 AC 155 ms
41,480 KB
testcase_29 AC 164 ms
41,848 KB
testcase_30 AC 168 ms
42,212 KB
testcase_31 AC 121 ms
40,952 KB
testcase_32 AC 105 ms
39,988 KB
testcase_33 AC 171 ms
42,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki45{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,res=0;
		n = sc.nextInt();
		int[] v = new int[n+1];
		for(int i = 1;i<n+1;i++){
			v[i] = sc.nextInt();
		}
		int[][] dp = new int[2][n+1];
		for(int i = 1;i<n+1;i++){
			if(dp[0][i-1]<dp[1][i-1]){
				dp[0][i] = dp[1][i-1];
			}else{
				dp[0][i] = dp[0][i-1];
			}
			dp[1][i] = dp[0][i-1] + v[i];
		}
		if(dp[0][n]>dp[1][n]){
			res = dp[0][n];
		}else{
			res = dp[1][n];
		}
		System.out.println(res);
	}
}
0