結果

問題 No.45 回転寿司
ユーザー joybeeeejoybeeee
提出日時 2020-05-07 15:43:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 54,960 KB
最終ジャッジ日時 2024-07-03 09:25:56
合計ジャッジ時間 8,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,476 KB
testcase_01 AC 167 ms
54,316 KB
testcase_02 AC 174 ms
54,472 KB
testcase_03 AC 178 ms
54,432 KB
testcase_04 AC 167 ms
54,204 KB
testcase_05 AC 134 ms
54,080 KB
testcase_06 AC 160 ms
54,232 KB
testcase_07 AC 175 ms
54,212 KB
testcase_08 AC 141 ms
54,488 KB
testcase_09 AC 172 ms
54,208 KB
testcase_10 AC 155 ms
54,108 KB
testcase_11 AC 138 ms
54,160 KB
testcase_12 AC 170 ms
54,644 KB
testcase_13 AC 132 ms
54,208 KB
testcase_14 AC 132 ms
54,436 KB
testcase_15 AC 169 ms
54,536 KB
testcase_16 AC 163 ms
54,340 KB
testcase_17 AC 165 ms
54,136 KB
testcase_18 AC 151 ms
54,172 KB
testcase_19 AC 174 ms
54,324 KB
testcase_20 AC 131 ms
54,136 KB
testcase_21 AC 132 ms
54,104 KB
testcase_22 AC 126 ms
54,160 KB
testcase_23 AC 125 ms
54,268 KB
testcase_24 AC 124 ms
54,040 KB
testcase_25 AC 113 ms
52,876 KB
testcase_26 AC 167 ms
54,096 KB
testcase_27 AC 168 ms
54,128 KB
testcase_28 AC 159 ms
54,348 KB
testcase_29 AC 164 ms
54,724 KB
testcase_30 AC 168 ms
54,352 KB
testcase_31 AC 123 ms
53,916 KB
testcase_32 AC 120 ms
54,064 KB
testcase_33 AC 171 ms
54,960 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 prevPrev = sc.nextInt();
      if(n == 1) {
          System.out.println(prevPrev);
          return;
      }
      
      int prev = Math.max(prevPrev, sc.nextInt());
      int res = Math.max(prevPrev, prev);
      for(int i = 3; i <= n; i++) {
        int num = sc.nextInt();
        res = Math.max(num + prevPrev, prev);
        prevPrev = prev;
        prev = res;
      }
      System.out.println(res);
  }
}
0