結果

問題 No.45 回転寿司
ユーザー dogwood0424dogwood0424
提出日時 2017-12-06 16:46:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 4,096 ms
コンパイル使用メモリ 74,012 KB
実行使用メモリ 42,320 KB
最終ジャッジ日時 2024-06-08 11:43:04
合計ジャッジ時間 10,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
41,720 KB
testcase_01 AC 159 ms
41,748 KB
testcase_02 AC 155 ms
41,924 KB
testcase_03 AC 172 ms
42,036 KB
testcase_04 AC 155 ms
41,700 KB
testcase_05 AC 139 ms
41,344 KB
testcase_06 AC 170 ms
41,992 KB
testcase_07 AC 157 ms
42,320 KB
testcase_08 AC 148 ms
41,692 KB
testcase_09 AC 160 ms
42,052 KB
testcase_10 AC 155 ms
41,452 KB
testcase_11 AC 146 ms
41,708 KB
testcase_12 AC 168 ms
42,136 KB
testcase_13 AC 127 ms
41,376 KB
testcase_14 AC 126 ms
40,980 KB
testcase_15 AC 160 ms
41,616 KB
testcase_16 AC 148 ms
41,664 KB
testcase_17 AC 157 ms
41,532 KB
testcase_18 AC 144 ms
41,172 KB
testcase_19 AC 167 ms
42,108 KB
testcase_20 AC 129 ms
41,036 KB
testcase_21 AC 125 ms
41,316 KB
testcase_22 AC 106 ms
40,136 KB
testcase_23 AC 120 ms
41,348 KB
testcase_24 AC 109 ms
39,816 KB
testcase_25 AC 121 ms
41,300 KB
testcase_26 AC 155 ms
41,444 KB
testcase_27 AC 168 ms
42,092 KB
testcase_28 AC 165 ms
41,964 KB
testcase_29 AC 163 ms
41,816 KB
testcase_30 AC 162 ms
41,464 KB
testcase_31 AC 110 ms
39,988 KB
testcase_32 AC 121 ms
41,180 KB
testcase_33 AC 180 ms
42,268 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