結果

問題 No.45 回転寿司
ユーザー core123core123
提出日時 2019-04-17 13:59:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,117 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 79,088 KB
実行使用メモリ 55,180 KB
最終ジャッジ日時 2024-09-22 08:29:58
合計ジャッジ時間 8,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
54,528 KB
testcase_01 AC 188 ms
54,532 KB
testcase_02 AC 198 ms
54,912 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 140 ms
54,132 KB
testcase_06 AC 183 ms
54,556 KB
testcase_07 WA -
testcase_08 AC 156 ms
54,004 KB
testcase_09 AC 201 ms
54,600 KB
testcase_10 AC 180 ms
54,344 KB
testcase_11 AC 145 ms
54,044 KB
testcase_12 WA -
testcase_13 AC 135 ms
54,084 KB
testcase_14 WA -
testcase_15 AC 184 ms
54,412 KB
testcase_16 AC 154 ms
54,392 KB
testcase_17 AC 184 ms
54,296 KB
testcase_18 AC 156 ms
54,404 KB
testcase_19 AC 187 ms
54,636 KB
testcase_20 AC 137 ms
54,316 KB
testcase_21 AC 138 ms
54,164 KB
testcase_22 AC 129 ms
54,248 KB
testcase_23 AC 127 ms
54,132 KB
testcase_24 AC 128 ms
54,056 KB
testcase_25 AC 127 ms
54,520 KB
testcase_26 AC 170 ms
54,448 KB
testcase_27 AC 192 ms
54,652 KB
testcase_28 AC 185 ms
54,420 KB
testcase_29 WA -
testcase_30 AC 192 ms
54,428 KB
testcase_31 AC 128 ms
54,192 KB
testcase_32 WA -
testcase_33 AC 207 ms
54,892 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(dp[n-1]);
		
	}
	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