結果

問題 No.45 回転寿司
ユーザー トミートミー
提出日時 2024-11-30 02:35:25
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 566 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-11-30 02:35:35
合計ジャッジ時間 8,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
41,976 KB
testcase_01 AC 185 ms
42,580 KB
testcase_02 AC 159 ms
42,388 KB
testcase_03 AC 153 ms
42,680 KB
testcase_04 AC 164 ms
42,072 KB
testcase_05 AC 127 ms
41,876 KB
testcase_06 AC 161 ms
41,784 KB
testcase_07 AC 164 ms
42,036 KB
testcase_08 AC 162 ms
41,720 KB
testcase_09 AC 153 ms
42,552 KB
testcase_10 AC 158 ms
41,572 KB
testcase_11 AC 130 ms
42,100 KB
testcase_12 AC 154 ms
42,296 KB
testcase_13 AC 125 ms
41,844 KB
testcase_14 AC 125 ms
41,448 KB
testcase_15 AC 152 ms
41,764 KB
testcase_16 AC 161 ms
41,720 KB
testcase_17 AC 153 ms
42,216 KB
testcase_18 AC 147 ms
41,540 KB
testcase_19 AC 157 ms
42,852 KB
testcase_20 AC 127 ms
41,528 KB
testcase_21 AC 125 ms
41,380 KB
testcase_22 AC 106 ms
40,272 KB
testcase_23 AC 104 ms
40,060 KB
testcase_24 AC 118 ms
41,444 KB
testcase_25 RE -
testcase_26 AC 142 ms
42,196 KB
testcase_27 AC 157 ms
42,380 KB
testcase_28 AC 149 ms
41,880 KB
testcase_29 AC 168 ms
42,184 KB
testcase_30 AC 162 ms
42,068 KB
testcase_31 AC 118 ms
41,568 KB
testcase_32 AC 138 ms
41,280 KB
testcase_33 AC 163 ms
42,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;

public class Main {
  public static void main(String[] args) {
    Scanner scanner=new Scanner(System.in);
    Integer n=scanner.nextInt();
    ArrayList<Integer> v=new ArrayList<>();
    for(int i=0;i<n;i++){
      v.add(scanner.nextInt());
    }
    scanner.close();
    ArrayList<Integer> dp=new ArrayList<>();
    dp.add(v.get(0));
    dp.add(Math.max(dp.get(0),v.get(1)));
    for(int i=2;i<n;i++){
      dp.add(Math.max(dp.get(i-1),dp.get(i-2)+v.get(i)));
    }
    System.out.println(dp.get(n-1));
  }
}
0