結果

問題 No.45 回転寿司
ユーザー core123core123
提出日時 2019-04-17 14:01:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 5,000 ms
コード長 1,143 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 79,012 KB
実行使用メモリ 56,504 KB
最終ジャッジ日時 2024-06-08 12:46:48
合計ジャッジ時間 9,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
54,208 KB
testcase_01 AC 196 ms
54,428 KB
testcase_02 AC 210 ms
54,700 KB
testcase_03 AC 206 ms
54,520 KB
testcase_04 AC 198 ms
54,340 KB
testcase_05 AC 147 ms
54,252 KB
testcase_06 AC 198 ms
54,448 KB
testcase_07 AC 203 ms
54,936 KB
testcase_08 AC 169 ms
54,204 KB
testcase_09 AC 210 ms
54,644 KB
testcase_10 AC 189 ms
56,504 KB
testcase_11 AC 150 ms
54,136 KB
testcase_12 AC 205 ms
54,716 KB
testcase_13 AC 143 ms
54,108 KB
testcase_14 AC 144 ms
53,884 KB
testcase_15 AC 189 ms
54,336 KB
testcase_16 AC 162 ms
54,084 KB
testcase_17 AC 189 ms
54,240 KB
testcase_18 AC 167 ms
54,140 KB
testcase_19 AC 209 ms
54,460 KB
testcase_20 AC 141 ms
54,252 KB
testcase_21 AC 142 ms
54,164 KB
testcase_22 AC 134 ms
53,920 KB
testcase_23 AC 135 ms
54,064 KB
testcase_24 AC 139 ms
53,692 KB
testcase_25 AC 136 ms
53,944 KB
testcase_26 AC 198 ms
54,596 KB
testcase_27 AC 202 ms
54,508 KB
testcase_28 AC 200 ms
54,704 KB
testcase_29 AC 187 ms
54,328 KB
testcase_30 AC 208 ms
54,568 KB
testcase_31 AC 136 ms
54,100 KB
testcase_32 AC 135 ms
54,332 KB
testcase_33 AC 213 ms
54,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
import static java.lang.Math.*;
public class Main{
	public static void main(String... args){
		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];
		for(int i=0;i<n;i++){
			dp[i]=v[i];
		}
		for(int i=0;i<n;i++){
			for(int j=i+2;j<n;j++){
				dp[j]=max(dp[j],dp[i]+v[j]);
			}
		}
		put(Arrays.stream(dp).max().orElse(0));
		
	}
	public static class Pair{
		final int x,y;
		Pair(int x,int y){
			this.x=x;
			this.y=y;
		}
		@Override
		public String toString(){
			return String.format("Pair(%d,%d)",x,y);
		}
	}
	public static void print(Object object){
        System.out.print(object);
    }
    public static void put(Object object) {
        System.out.println(object);
    }
    public static void put(){
        System.out.println();
    }
 
    public static void print(String format,Object... args){
        System.out.print(String.format(format,args));
    }
    public static void put(String format,Object... args) {
        System.out.println(String.format(format,args));
    }
}
0