結果

問題 No.45 回転寿司
ユーザー kuramukuramu
提出日時 2016-01-20 14:31:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 1,167 bytes
コンパイル時間 1,837 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 38,164 KB
最終ジャッジ日時 2024-06-08 10:08:54
合計ジャッジ時間 4,514 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,112 KB
testcase_01 AC 51 ms
36,648 KB
testcase_02 AC 69 ms
37,496 KB
testcase_03 AC 78 ms
38,056 KB
testcase_04 AC 52 ms
36,764 KB
testcase_05 AC 44 ms
37,012 KB
testcase_06 AC 51 ms
36,864 KB
testcase_07 AC 76 ms
37,836 KB
testcase_08 AC 46 ms
36,840 KB
testcase_09 AC 71 ms
37,748 KB
testcase_10 AC 47 ms
36,680 KB
testcase_11 AC 44 ms
36,516 KB
testcase_12 AC 69 ms
37,580 KB
testcase_13 AC 44 ms
37,024 KB
testcase_14 AC 43 ms
36,544 KB
testcase_15 AC 49 ms
36,804 KB
testcase_16 AC 47 ms
36,980 KB
testcase_17 AC 48 ms
37,004 KB
testcase_18 AC 48 ms
36,780 KB
testcase_19 AC 55 ms
36,632 KB
testcase_20 AC 45 ms
36,832 KB
testcase_21 AC 44 ms
36,804 KB
testcase_22 AC 46 ms
36,664 KB
testcase_23 AC 44 ms
36,840 KB
testcase_24 AC 44 ms
36,684 KB
testcase_25 AC 43 ms
36,520 KB
testcase_26 AC 48 ms
37,152 KB
testcase_27 AC 57 ms
36,984 KB
testcase_28 AC 49 ms
36,784 KB
testcase_29 AC 52 ms
36,764 KB
testcase_30 AC 51 ms
37,112 KB
testcase_31 AC 44 ms
36,800 KB
testcase_32 AC 44 ms
36,896 KB
testcase_33 AC 69 ms
38,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
		      int N = Integer.parseInt(stdReader.readLine());
		      String[] temps = stdReader.readLine().split(" ");
		      int[] nums = new int[N];
		      for(int i=0;i<N;i++){
		    	  nums[i] = Integer.parseInt(temps[i]);
		      }
		      
		      int[] dp = new int[N];
		      if(N == 1){
		    	  System.out.println(nums[0]);
		      }else if(N==2){
		    	  System.out.println(Math.max(nums[0], nums[1]));
		      }else{
			      dp[0] = nums[0];
			      dp[1] = nums[1];
 		    	  int max = 0;
	 		      for(int i=2;i<N;i++){
	 		    	  max = 0;
			    	  for(int j=0;j<i-1;j++){
			    		  if(max < nums[i]+dp[j]) max = nums[i]+dp[j];
			    	  }
			    	  dp[i] = max;
			      }
	 		      max = 0;
	 		      for(int i=0;i<N;i++){
	 		    	  if(max < dp[i]) max = dp[i];
	 		      }
	 		      System.out.println(max);
		      }
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0