結果

問題 No.45 回転寿司
ユーザー dogwood0424dogwood0424
提出日時 2017-12-06 16:46:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 193 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 3,450 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 42,336 KB
最終ジャッジ日時 2024-12-27 17:43:32
合計ジャッジ時間 10,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
41,396 KB
testcase_01 AC 176 ms
41,888 KB
testcase_02 AC 191 ms
41,868 KB
testcase_03 AC 188 ms
41,908 KB
testcase_04 AC 182 ms
41,820 KB
testcase_05 AC 151 ms
40,980 KB
testcase_06 AC 184 ms
41,944 KB
testcase_07 AC 188 ms
41,916 KB
testcase_08 AC 161 ms
41,424 KB
testcase_09 AC 187 ms
42,248 KB
testcase_10 AC 181 ms
41,408 KB
testcase_11 AC 152 ms
41,512 KB
testcase_12 AC 180 ms
42,336 KB
testcase_13 AC 144 ms
41,072 KB
testcase_14 AC 141 ms
41,188 KB
testcase_15 AC 179 ms
41,784 KB
testcase_16 AC 158 ms
41,500 KB
testcase_17 AC 181 ms
41,836 KB
testcase_18 AC 162 ms
41,640 KB
testcase_19 AC 186 ms
42,012 KB
testcase_20 AC 145 ms
39,912 KB
testcase_21 AC 148 ms
41,236 KB
testcase_22 AC 135 ms
41,436 KB
testcase_23 AC 136 ms
41,120 KB
testcase_24 AC 139 ms
40,884 KB
testcase_25 AC 135 ms
41,052 KB
testcase_26 AC 185 ms
41,956 KB
testcase_27 AC 193 ms
41,896 KB
testcase_28 AC 178 ms
41,912 KB
testcase_29 AC 190 ms
41,892 KB
testcase_30 AC 180 ms
41,804 KB
testcase_31 AC 134 ms
41,008 KB
testcase_32 AC 135 ms
41,124 KB
testcase_33 AC 188 ms
42,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No45
{
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		int n  = sc.nextInt();	//最初の入力
		int []v=new int [n+1];	//美味しさを格納する配列
		v[0]=0;
		for(int i=1;i<n+1;i++) {
			v[i]=sc.nextInt();	//美味しさの入力
		}

		int[]c = new int[n+1];	//c[i]はi番目までの美味しさの最大値

		c[0]=0;
		c[1]=v[1];



		for(int i=2;i<n+1;i++) {

				c[i]+=Math.max(c[i-1], c[i-2]+v[i]);

			}

		System.out.println(c[n]);

		sc.close();

	}

}
0