結果

問題 No.45 回転寿司
ユーザー core123core123
提出日時 2019-04-17 14:23:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 1,151 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 78,996 KB
実行使用メモリ 42,536 KB
最終ジャッジ日時 2024-06-08 12:46:58
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,508 KB
testcase_01 AC 149 ms
41,736 KB
testcase_02 AC 155 ms
42,408 KB
testcase_03 AC 156 ms
42,524 KB
testcase_04 AC 151 ms
41,684 KB
testcase_05 AC 129 ms
41,376 KB
testcase_06 AC 151 ms
42,260 KB
testcase_07 AC 151 ms
42,028 KB
testcase_08 AC 143 ms
41,588 KB
testcase_09 AC 160 ms
42,004 KB
testcase_10 AC 151 ms
42,032 KB
testcase_11 AC 125 ms
41,684 KB
testcase_12 AC 167 ms
42,536 KB
testcase_13 AC 121 ms
41,684 KB
testcase_14 AC 115 ms
41,376 KB
testcase_15 AC 149 ms
41,784 KB
testcase_16 AC 148 ms
41,532 KB
testcase_17 AC 149 ms
42,280 KB
testcase_18 AC 139 ms
41,276 KB
testcase_19 AC 152 ms
41,868 KB
testcase_20 AC 110 ms
40,188 KB
testcase_21 AC 120 ms
41,364 KB
testcase_22 AC 111 ms
41,384 KB
testcase_23 AC 119 ms
41,120 KB
testcase_24 AC 101 ms
40,232 KB
testcase_25 AC 110 ms
41,368 KB
testcase_26 AC 146 ms
42,236 KB
testcase_27 AC 152 ms
42,440 KB
testcase_28 AC 145 ms
41,892 KB
testcase_29 AC 151 ms
41,932 KB
testcase_30 AC 151 ms
41,776 KB
testcase_31 AC 112 ms
40,888 KB
testcase_32 AC 113 ms
40,876 KB
testcase_33 AC 157 ms
42,420 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<=i+3;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