結果

問題 No.45 回転寿司
ユーザー core123core123
提出日時 2019-04-17 14:01:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 300 ms / 5,000 ms
コード長 1,143 bytes
コンパイル時間 4,352 ms
コンパイル使用メモリ 78,304 KB
実行使用メモリ 42,580 KB
最終ジャッジ日時 2024-12-27 20:28:19
合計ジャッジ時間 13,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
41,988 KB
testcase_01 AC 279 ms
41,972 KB
testcase_02 AC 294 ms
42,296 KB
testcase_03 AC 300 ms
42,280 KB
testcase_04 AC 280 ms
41,956 KB
testcase_05 AC 191 ms
41,304 KB
testcase_06 AC 257 ms
41,596 KB
testcase_07 AC 212 ms
41,992 KB
testcase_08 AC 155 ms
40,968 KB
testcase_09 AC 217 ms
42,444 KB
testcase_10 AC 188 ms
41,664 KB
testcase_11 AC 147 ms
41,368 KB
testcase_12 AC 213 ms
42,580 KB
testcase_13 AC 145 ms
40,832 KB
testcase_14 AC 140 ms
40,940 KB
testcase_15 AC 193 ms
41,500 KB
testcase_16 AC 163 ms
41,460 KB
testcase_17 AC 188 ms
41,928 KB
testcase_18 AC 168 ms
41,276 KB
testcase_19 AC 206 ms
41,880 KB
testcase_20 AC 144 ms
41,216 KB
testcase_21 AC 143 ms
41,300 KB
testcase_22 AC 142 ms
41,032 KB
testcase_23 AC 137 ms
41,028 KB
testcase_24 AC 135 ms
40,996 KB
testcase_25 AC 130 ms
40,700 KB
testcase_26 AC 202 ms
41,776 KB
testcase_27 AC 206 ms
42,356 KB
testcase_28 AC 206 ms
41,552 KB
testcase_29 AC 207 ms
41,772 KB
testcase_30 AC 215 ms
41,928 KB
testcase_31 AC 134 ms
40,064 KB
testcase_32 AC 141 ms
40,908 KB
testcase_33 AC 222 ms
42,180 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