結果

問題 No.45 回転寿司
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-18 00:57:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 80,708 KB
実行使用メモリ 55,132 KB
最終ジャッジ日時 2024-06-08 12:27:38
合計ジャッジ時間 9,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
54,592 KB
testcase_01 AC 145 ms
54,200 KB
testcase_02 AC 173 ms
55,132 KB
testcase_03 AC 174 ms
54,468 KB
testcase_04 AC 164 ms
54,468 KB
testcase_05 AC 126 ms
54,476 KB
testcase_06 AC 165 ms
54,356 KB
testcase_07 AC 174 ms
54,968 KB
testcase_08 AC 137 ms
54,428 KB
testcase_09 AC 174 ms
54,508 KB
testcase_10 AC 158 ms
54,316 KB
testcase_11 AC 128 ms
54,084 KB
testcase_12 AC 184 ms
54,580 KB
testcase_13 AC 124 ms
54,172 KB
testcase_14 AC 127 ms
54,192 KB
testcase_15 AC 161 ms
54,456 KB
testcase_16 AC 138 ms
54,292 KB
testcase_17 AC 159 ms
54,384 KB
testcase_18 AC 137 ms
54,280 KB
testcase_19 AC 166 ms
54,276 KB
testcase_20 AC 107 ms
54,492 KB
testcase_21 AC 117 ms
53,692 KB
testcase_22 AC 112 ms
53,828 KB
testcase_23 AC 109 ms
53,740 KB
testcase_24 AC 111 ms
53,772 KB
testcase_25 AC 102 ms
52,836 KB
testcase_26 AC 162 ms
54,164 KB
testcase_27 AC 173 ms
54,392 KB
testcase_28 AC 162 ms
54,508 KB
testcase_29 AC 172 ms
54,508 KB
testcase_30 AC 164 ms
54,376 KB
testcase_31 AC 113 ms
52,820 KB
testcase_32 AC 115 ms
53,816 KB
testcase_33 AC 181 ms
55,036 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