結果

問題 No.45 回転寿司
ユーザー kuramukuramu
提出日時 2016-01-20 14:44:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 916 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 76,420 KB
実行使用メモリ 37,148 KB
最終ジャッジ日時 2024-06-08 10:09:04
合計ジャッジ時間 4,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,048 KB
testcase_01 AC 48 ms
36,676 KB
testcase_02 AC 50 ms
36,992 KB
testcase_03 AC 49 ms
37,056 KB
testcase_04 AC 51 ms
36,548 KB
testcase_05 AC 51 ms
36,900 KB
testcase_06 AC 52 ms
37,096 KB
testcase_07 AC 52 ms
36,832 KB
testcase_08 AC 52 ms
36,944 KB
testcase_09 AC 52 ms
36,896 KB
testcase_10 AC 52 ms
36,920 KB
testcase_11 AC 50 ms
36,624 KB
testcase_12 AC 49 ms
37,012 KB
testcase_13 AC 48 ms
36,904 KB
testcase_14 AC 47 ms
36,548 KB
testcase_15 AC 48 ms
37,048 KB
testcase_16 AC 50 ms
36,968 KB
testcase_17 AC 49 ms
36,664 KB
testcase_18 AC 50 ms
36,412 KB
testcase_19 AC 52 ms
36,528 KB
testcase_20 AC 50 ms
36,904 KB
testcase_21 AC 50 ms
36,744 KB
testcase_22 AC 48 ms
36,900 KB
testcase_23 AC 48 ms
36,932 KB
testcase_24 AC 49 ms
36,948 KB
testcase_25 AC 49 ms
37,104 KB
testcase_26 AC 50 ms
36,972 KB
testcase_27 AC 51 ms
37,064 KB
testcase_28 AC 52 ms
36,652 KB
testcase_29 AC 51 ms
37,148 KB
testcase_30 AC 51 ms
36,964 KB
testcase_31 AC 48 ms
36,644 KB
testcase_32 AC 45 ms
36,900 KB
testcase_33 AC 48 ms
36,972 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{
		    	  dp[0] = nums[0];
		    	  dp[1] = Math.max(nums[0], nums[1]);
 		    	  int max = 0;
	 		      for(int i=2;i<N;i++){
			    	  dp[i] = Math.max(dp[i-1], dp[i-2]+nums[i]);
			      }
	 		      System.out.println(dp[N-1]);
		      }
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0