結果

問題 No.1160 Strange Bowling
ユーザー tentententen
提出日時 2020-08-17 11:53:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 725 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 77,572 KB
実行使用メモリ 70,548 KB
最終ジャッジ日時 2024-10-11 10:56:10
合計ジャッジ時間 20,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,436 KB
testcase_01 AC 135 ms
41,116 KB
testcase_02 AC 132 ms
41,164 KB
testcase_03 AC 132 ms
41,216 KB
testcase_04 AC 116 ms
41,424 KB
testcase_05 AC 132 ms
40,912 KB
testcase_06 AC 130 ms
41,132 KB
testcase_07 AC 130 ms
41,036 KB
testcase_08 AC 127 ms
41,244 KB
testcase_09 AC 131 ms
41,008 KB
testcase_10 AC 636 ms
61,904 KB
testcase_11 AC 558 ms
53,424 KB
testcase_12 AC 384 ms
48,940 KB
testcase_13 AC 305 ms
48,800 KB
testcase_14 AC 696 ms
58,300 KB
testcase_15 AC 382 ms
49,856 KB
testcase_16 AC 424 ms
50,200 KB
testcase_17 AC 640 ms
57,600 KB
testcase_18 AC 509 ms
52,432 KB
testcase_19 AC 465 ms
51,868 KB
testcase_20 AC 618 ms
55,328 KB
testcase_21 AC 563 ms
53,372 KB
testcase_22 AC 384 ms
49,152 KB
testcase_23 AC 358 ms
48,744 KB
testcase_24 AC 316 ms
49,092 KB
testcase_25 AC 482 ms
52,072 KB
testcase_26 AC 338 ms
49,412 KB
testcase_27 AC 599 ms
54,144 KB
testcase_28 AC 380 ms
49,780 KB
testcase_29 AC 645 ms
58,380 KB
testcase_30 AC 664 ms
70,548 KB
testcase_31 AC 570 ms
55,748 KB
testcase_32 AC 427 ms
49,832 KB
testcase_33 AC 592 ms
53,576 KB
testcase_34 AC 571 ms
53,204 KB
testcase_35 AC 725 ms
64,992 KB
testcase_36 AC 115 ms
41,192 KB
testcase_37 AC 124 ms
40,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[][] dp;
    static int[] pins;
    static int[] scores;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        pins = new int[n];
        scores = new int[n];
        for (int i = 0; i < n; i++) {
            pins[i] = sc.nextInt();
            scores[i] = sc.nextInt();
        }
        dp = new int[2][n];
        System.out.println(dfw(n - 1, 0));
  }
   
   static int dfw(int idx, int type) {
       if (idx < 0) {
           if (type == 1) {
               return Integer.MIN_VALUE;
           } else {
                return 0;
           }
       }
       if (dp[type][idx] == 0) {
           if (type == 0) {
               dp[type][idx] = Math.max(pins[idx] * 2 + dfw(idx - 1, 1), pins[idx] + dfw(idx - 1, 0));
           } else {
               dp[type][idx] = Math.max(scores[idx] * 2 + dfw(idx - 1, 1), scores[idx] + dfw(idx - 1, 0));
           }
       }
       return dp[type][idx];
   }
}
0