結果

問題 No.45 回転寿司
ユーザー core123core123
提出日時 2019-04-17 14:23:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 207 ms / 5,000 ms
コード長 1,151 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 78,760 KB
実行使用メモリ 42,224 KB
最終ジャッジ日時 2024-12-27 20:28:45
合計ジャッジ時間 9,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
41,632 KB
testcase_01 AC 183 ms
41,692 KB
testcase_02 AC 192 ms
42,092 KB
testcase_03 AC 198 ms
42,064 KB
testcase_04 AC 183 ms
41,936 KB
testcase_05 AC 154 ms
41,052 KB
testcase_06 AC 189 ms
41,572 KB
testcase_07 AC 188 ms
41,980 KB
testcase_08 AC 161 ms
41,056 KB
testcase_09 AC 198 ms
42,004 KB
testcase_10 AC 176 ms
41,480 KB
testcase_11 AC 159 ms
41,268 KB
testcase_12 AC 190 ms
41,892 KB
testcase_13 AC 144 ms
40,704 KB
testcase_14 AC 152 ms
41,156 KB
testcase_15 AC 184 ms
41,588 KB
testcase_16 AC 158 ms
41,316 KB
testcase_17 AC 176 ms
41,448 KB
testcase_18 AC 160 ms
41,284 KB
testcase_19 AC 181 ms
41,928 KB
testcase_20 AC 146 ms
41,108 KB
testcase_21 AC 147 ms
41,236 KB
testcase_22 AC 136 ms
41,236 KB
testcase_23 AC 139 ms
40,784 KB
testcase_24 AC 135 ms
40,836 KB
testcase_25 AC 127 ms
40,224 KB
testcase_26 AC 189 ms
41,728 KB
testcase_27 AC 207 ms
42,036 KB
testcase_28 AC 185 ms
41,688 KB
testcase_29 AC 189 ms
41,740 KB
testcase_30 AC 188 ms
41,956 KB
testcase_31 AC 138 ms
40,912 KB
testcase_32 AC 134 ms
40,756 KB
testcase_33 AC 195 ms
42,224 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