結果

問題 No.45 回転寿司
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 17:33:04
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 624 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 56,064 KB
最終ジャッジ日時 2024-06-07 21:02:43
合計ジャッジ時間 8,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
54,096 KB
testcase_01 AC 170 ms
54,128 KB
testcase_02 AC 175 ms
54,284 KB
testcase_03 AC 183 ms
54,472 KB
testcase_04 AC 177 ms
54,436 KB
testcase_05 AC 136 ms
54,056 KB
testcase_06 AC 166 ms
54,320 KB
testcase_07 AC 175 ms
54,276 KB
testcase_08 AC 146 ms
54,148 KB
testcase_09 AC 177 ms
54,532 KB
testcase_10 AC 163 ms
54,384 KB
testcase_11 AC 137 ms
53,992 KB
testcase_12 AC 179 ms
54,404 KB
testcase_13 AC 135 ms
54,272 KB
testcase_14 AC 130 ms
54,264 KB
testcase_15 AC 167 ms
54,268 KB
testcase_16 AC 160 ms
54,140 KB
testcase_17 AC 164 ms
54,272 KB
testcase_18 AC 149 ms
54,172 KB
testcase_19 AC 168 ms
54,232 KB
testcase_20 AC 132 ms
54,052 KB
testcase_21 AC 138 ms
53,936 KB
testcase_22 AC 123 ms
53,948 KB
testcase_23 AC 125 ms
54,252 KB
testcase_24 AC 125 ms
54,292 KB
testcase_25 RE -
testcase_26 AC 175 ms
54,280 KB
testcase_27 AC 175 ms
54,288 KB
testcase_28 AC 169 ms
54,456 KB
testcase_29 AC 172 ms
54,460 KB
testcase_30 AC 174 ms
54,400 KB
testcase_31 AC 122 ms
54,176 KB
testcase_32 AC 119 ms
53,932 KB
testcase_33 AC 179 ms
54,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) {
			ar[i] = sc.nextInt();
		}
		
		int[] dp = new int[n];
		dp[0] = ar[0]; //流れてきたのが1皿のときは、その1皿のみに美味しさを求めるしかない
		dp[1] = Math.max(ar[0],ar[1]); //2皿のときは、1皿目をとるか、2皿目をとるかのどちらかである
		for (int i=1; i<n; i++) {
			if (i>1) {dp[i] = Math.max(dp[i-2]+ar[i],dp[i-1]);}
		}
		
		System.out.println(dp[n-1]);
	}
}

0