結果

問題 No.45 回転寿司
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-14 13:52:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 698 bytes
コンパイル時間 3,523 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 42,372 KB
最終ジャッジ日時 2024-06-08 11:21:11
合計ジャッジ時間 9,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,396 KB
testcase_01 AC 149 ms
41,932 KB
testcase_02 AC 141 ms
42,116 KB
testcase_03 AC 138 ms
42,372 KB
testcase_04 AC 143 ms
42,276 KB
testcase_05 AC 113 ms
40,080 KB
testcase_06 AC 143 ms
41,744 KB
testcase_07 AC 150 ms
42,180 KB
testcase_08 AC 133 ms
41,368 KB
testcase_09 AC 149 ms
42,012 KB
testcase_10 AC 140 ms
41,576 KB
testcase_11 AC 119 ms
41,460 KB
testcase_12 AC 151 ms
41,924 KB
testcase_13 AC 113 ms
41,220 KB
testcase_14 AC 112 ms
40,820 KB
testcase_15 AC 156 ms
41,720 KB
testcase_16 AC 133 ms
41,600 KB
testcase_17 AC 140 ms
41,924 KB
testcase_18 AC 123 ms
41,556 KB
testcase_19 AC 144 ms
42,000 KB
testcase_20 AC 111 ms
40,876 KB
testcase_21 AC 115 ms
41,212 KB
testcase_22 AC 95 ms
39,848 KB
testcase_23 AC 102 ms
40,220 KB
testcase_24 AC 104 ms
40,064 KB
testcase_25 AC 116 ms
41,216 KB
testcase_26 AC 169 ms
41,720 KB
testcase_27 AC 163 ms
42,288 KB
testcase_28 AC 151 ms
42,156 KB
testcase_29 AC 148 ms
41,892 KB
testcase_30 AC 160 ms
41,912 KB
testcase_31 AC 104 ms
40,888 KB
testcase_32 AC 106 ms
41,188 KB
testcase_33 AC 148 ms
42,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
    }
    // dp[i]は最後の寿司が寿司iの場合の美味しさの最大値を表す
    int[] dp = new int[N];
    // max[i] = max(0≦j≦i)dp[j]
    int[] max = new int[N];
    dp[0] = v[0];
    max[0] = dp[0];
    if(N > 1) {
      dp[1] = v[1];
      max[1] = Math.max(max[0], dp[1]);
    }
    for(int i = 2; i < N; i++) {
      dp[i] = v[i] + max[i - 2];
      max[i] = Math.max(dp[i], max[i - 1]); 
    }
    System.out.println(max[N - 1]);
  }
}
0