結果

問題 No.45 回転寿司
ユーザー GBGB
提出日時 2018-04-17 12:14:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 42,524 KB
最終ジャッジ日時 2024-06-08 12:08:17
合計ジャッジ時間 8,267 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
42,108 KB
testcase_01 AC 164 ms
41,708 KB
testcase_02 AC 158 ms
42,052 KB
testcase_03 AC 164 ms
42,072 KB
testcase_04 AC 159 ms
41,984 KB
testcase_05 AC 130 ms
41,060 KB
testcase_06 AC 158 ms
41,576 KB
testcase_07 AC 168 ms
42,524 KB
testcase_08 AC 132 ms
41,548 KB
testcase_09 AC 169 ms
42,016 KB
testcase_10 AC 158 ms
41,740 KB
testcase_11 AC 146 ms
41,556 KB
testcase_12 AC 159 ms
42,460 KB
testcase_13 AC 126 ms
41,156 KB
testcase_14 AC 128 ms
41,456 KB
testcase_15 AC 155 ms
41,708 KB
testcase_16 AC 142 ms
41,296 KB
testcase_17 AC 155 ms
41,520 KB
testcase_18 AC 146 ms
41,440 KB
testcase_19 AC 153 ms
41,724 KB
testcase_20 AC 119 ms
40,956 KB
testcase_21 AC 128 ms
41,472 KB
testcase_22 AC 111 ms
41,228 KB
testcase_23 AC 120 ms
41,288 KB
testcase_24 AC 108 ms
39,876 KB
testcase_25 AC 114 ms
40,176 KB
testcase_26 AC 158 ms
41,856 KB
testcase_27 AC 171 ms
42,104 KB
testcase_28 AC 153 ms
41,576 KB
testcase_29 AC 164 ms
42,392 KB
testcase_30 AC 158 ms
42,072 KB
testcase_31 AC 121 ms
40,928 KB
testcase_32 AC 106 ms
40,192 KB
testcase_33 AC 159 ms
42,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args) throws IOException{
    Scanner scan=new Scanner(System.in);
    int n=scan.nextInt();
    int[] a=new int[n+5];
    int[] dp=new int[n+5];

    for(int i=0;i<n;i++){
      a[i]=scan.nextInt();
    }

    dp[0]=a[0];

    for(int i=1;i<n;i++){
      if(i==1){
        dp[i]=Math.max(dp[i-1],a[i]);
      }
      if(i>1){
        dp[i]=Math.max(dp[i-1],dp[i-2]+a[i]);
      }
    }
    System.out.println(dp[n-1]);
  }
}
0