結果

問題 No.45 回転寿司
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 17:30:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 42,924 KB
最終ジャッジ日時 2024-06-08 11:52:30
合計ジャッジ時間 8,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
42,368 KB
testcase_01 AC 177 ms
42,024 KB
testcase_02 AC 197 ms
42,720 KB
testcase_03 AC 188 ms
42,520 KB
testcase_04 AC 187 ms
42,324 KB
testcase_05 AC 146 ms
41,812 KB
testcase_06 AC 178 ms
41,912 KB
testcase_07 AC 183 ms
42,520 KB
testcase_08 AC 166 ms
41,672 KB
testcase_09 AC 185 ms
42,324 KB
testcase_10 AC 182 ms
42,020 KB
testcase_11 AC 161 ms
41,508 KB
testcase_12 AC 187 ms
42,264 KB
testcase_13 AC 151 ms
41,556 KB
testcase_14 AC 142 ms
41,744 KB
testcase_15 AC 165 ms
41,852 KB
testcase_16 AC 171 ms
41,860 KB
testcase_17 AC 166 ms
42,044 KB
testcase_18 AC 157 ms
41,852 KB
testcase_19 AC 188 ms
42,356 KB
testcase_20 AC 141 ms
41,388 KB
testcase_21 AC 142 ms
41,368 KB
testcase_22 AC 134 ms
41,236 KB
testcase_23 AC 134 ms
41,372 KB
testcase_24 AC 134 ms
41,684 KB
testcase_25 AC 138 ms
41,284 KB
testcase_26 AC 185 ms
42,640 KB
testcase_27 AC 186 ms
42,844 KB
testcase_28 AC 183 ms
41,940 KB
testcase_29 AC 188 ms
42,768 KB
testcase_30 AC 187 ms
42,684 KB
testcase_31 AC 136 ms
41,584 KB
testcase_32 AC 128 ms
41,328 KB
testcase_33 AC 188 ms
42,924 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];
		for (int i=1; i<n; i++) {
			if (i==1) {dp[i] = Math.max(dp[i-1],ar[i]);}
			if (i>1) {dp[i] = Math.max(dp[i-2]+ar[i],dp[i-1]);}
		}
		
		System.out.println(dp[n-1]);
	}
}

0