結果

問題 No.45 回転寿司
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-26 17:12:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 3,146 ms
コンパイル使用メモリ 77,880 KB
実行使用メモリ 42,328 KB
最終ジャッジ日時 2024-06-08 10:44:20
合計ジャッジ時間 8,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,100 KB
testcase_01 AC 145 ms
41,468 KB
testcase_02 AC 149 ms
42,060 KB
testcase_03 AC 155 ms
42,016 KB
testcase_04 AC 135 ms
41,852 KB
testcase_05 AC 113 ms
41,032 KB
testcase_06 AC 147 ms
41,708 KB
testcase_07 AC 150 ms
41,832 KB
testcase_08 AC 141 ms
41,604 KB
testcase_09 AC 152 ms
42,328 KB
testcase_10 AC 143 ms
41,580 KB
testcase_11 AC 123 ms
41,920 KB
testcase_12 AC 154 ms
42,132 KB
testcase_13 AC 121 ms
41,280 KB
testcase_14 AC 117 ms
41,204 KB
testcase_15 AC 146 ms
41,800 KB
testcase_16 AC 136 ms
41,236 KB
testcase_17 AC 141 ms
41,432 KB
testcase_18 AC 135 ms
41,248 KB
testcase_19 AC 152 ms
42,056 KB
testcase_20 AC 117 ms
41,168 KB
testcase_21 AC 120 ms
41,348 KB
testcase_22 AC 106 ms
41,104 KB
testcase_23 AC 113 ms
41,076 KB
testcase_24 AC 111 ms
41,204 KB
testcase_25 AC 110 ms
41,064 KB
testcase_26 AC 134 ms
41,640 KB
testcase_27 AC 152 ms
41,856 KB
testcase_28 AC 148 ms
41,856 KB
testcase_29 AC 136 ms
41,920 KB
testcase_30 AC 146 ms
41,588 KB
testcase_31 AC 106 ms
41,092 KB
testcase_32 AC 106 ms
40,928 KB
testcase_33 AC 155 ms
42,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercises20{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int numberOfSushi = sc.nextInt();

    int[] sushiArray = new int[numberOfSushi];

    for (int n = 0; n < numberOfSushi; n++){
      sushiArray[n] = sc.nextInt();
    }

    int[] dp = new int[2];
    for (int n = 0; n < numberOfSushi; n++){
      int[] dp2 = new int[2];
      dp2[0] = Math.max(dp[0], dp[1]);
      dp2[1] = dp[0] + sushiArray[n];
      dp = dp2;
    }

    System.out.println(Math.max(dp[0], dp[1]));
  }
}
0