結果

問題 No.45 回転寿司
ユーザー amyuamyu
提出日時 2017-12-01 11:16:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 42,740 KB
最終ジャッジ日時 2024-06-08 11:41:47
合計ジャッジ時間 7,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,608 KB
testcase_01 AC 145 ms
42,120 KB
testcase_02 AC 150 ms
42,012 KB
testcase_03 AC 142 ms
42,188 KB
testcase_04 AC 161 ms
41,892 KB
testcase_05 AC 114 ms
41,296 KB
testcase_06 AC 148 ms
41,912 KB
testcase_07 AC 152 ms
42,256 KB
testcase_08 AC 134 ms
41,152 KB
testcase_09 AC 155 ms
42,668 KB
testcase_10 AC 160 ms
41,948 KB
testcase_11 AC 121 ms
42,072 KB
testcase_12 AC 141 ms
41,812 KB
testcase_13 AC 112 ms
41,320 KB
testcase_14 AC 111 ms
41,320 KB
testcase_15 AC 143 ms
41,820 KB
testcase_16 AC 136 ms
41,696 KB
testcase_17 AC 141 ms
41,848 KB
testcase_18 AC 140 ms
41,896 KB
testcase_19 AC 157 ms
42,548 KB
testcase_20 AC 115 ms
41,364 KB
testcase_21 AC 114 ms
41,368 KB
testcase_22 AC 101 ms
40,036 KB
testcase_23 AC 100 ms
39,864 KB
testcase_24 AC 107 ms
41,232 KB
testcase_25 AC 104 ms
41,068 KB
testcase_26 AC 131 ms
41,820 KB
testcase_27 AC 148 ms
41,780 KB
testcase_28 AC 168 ms
42,320 KB
testcase_29 AC 179 ms
42,140 KB
testcase_30 AC 149 ms
41,916 KB
testcase_31 AC 107 ms
40,176 KB
testcase_32 AC 108 ms
41,072 KB
testcase_33 AC 158 ms
42,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main{
	public static void main(String[] args){
		solve();
	}
	public static void solve(){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] v = new int[n];
		for(int i=0;i<n;i++){
			v[i] = sc.nextInt();
		}
		int[] dp = new int[n];
		dp[0] = v[0];
		for(int i=1;i<n;i++){
			if(i==1){
				dp[i] = Math.max(v[i],v[i-1]);
			}
			else{
				dp[i] = Math.max(dp[i-2]+v[i],dp[i-1]);
			}
		}
		System.out.println(dp[n-1]);
	}
}
0