結果

問題 No.45 回転寿司
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-18 00:57:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 225 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 6,392 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 42,560 KB
最終ジャッジ日時 2024-12-27 19:39:38
合計ジャッジ時間 13,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
41,572 KB
testcase_01 AC 220 ms
42,044 KB
testcase_02 AC 214 ms
42,356 KB
testcase_03 AC 215 ms
42,552 KB
testcase_04 AC 198 ms
41,776 KB
testcase_05 AC 152 ms
41,292 KB
testcase_06 AC 204 ms
41,820 KB
testcase_07 AC 216 ms
42,552 KB
testcase_08 AC 167 ms
41,104 KB
testcase_09 AC 213 ms
42,420 KB
testcase_10 AC 209 ms
41,828 KB
testcase_11 AC 156 ms
41,244 KB
testcase_12 AC 222 ms
42,560 KB
testcase_13 AC 163 ms
41,532 KB
testcase_14 AC 149 ms
41,004 KB
testcase_15 AC 197 ms
41,868 KB
testcase_16 AC 161 ms
41,424 KB
testcase_17 AC 202 ms
41,536 KB
testcase_18 AC 189 ms
41,520 KB
testcase_19 AC 200 ms
42,304 KB
testcase_20 AC 146 ms
40,304 KB
testcase_21 AC 149 ms
41,124 KB
testcase_22 AC 138 ms
41,336 KB
testcase_23 AC 141 ms
41,100 KB
testcase_24 AC 133 ms
41,264 KB
testcase_25 AC 131 ms
40,852 KB
testcase_26 AC 219 ms
41,924 KB
testcase_27 AC 208 ms
42,260 KB
testcase_28 AC 203 ms
42,144 KB
testcase_29 AC 201 ms
41,880 KB
testcase_30 AC 219 ms
42,024 KB
testcase_31 AC 145 ms
39,980 KB
testcase_32 AC 140 ms
40,528 KB
testcase_33 AC 225 ms
42,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		int v[]=new int[n];
		for(int i=0;i<n;i++){
			v[i]=scanner.nextInt();
		}
		if(n==1){
			System.out.println(v[0]);
			return;
		}
		int dp[]=new int[n];
		dp[0]=v[0];
		dp[1]=v[1];
		for(int i=0;i<n;i++){
			for(int j=0;j<i-1;j++){
				dp[i]=Math.max(dp[i], dp[j]+v[i]);
			}
		}
		Arrays.sort(dp);
		System.out.println(dp[dp.length-1]);
	}
}
0