結果

問題 No.973 余興
ユーザー tentententen
提出日時 2021-03-01 14:58:09
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,150 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 68,720 KB
最終ジャッジ日時 2024-10-03 00:52:37
合計ジャッジ時間 18,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 822 ms
68,720 KB
testcase_01 AC 842 ms
68,624 KB
testcase_02 AC 790 ms
68,468 KB
testcase_03 AC 815 ms
68,640 KB
testcase_04 AC 827 ms
68,520 KB
testcase_05 AC 799 ms
68,588 KB
testcase_06 AC 861 ms
68,436 KB
testcase_07 AC 835 ms
68,544 KB
testcase_08 AC 821 ms
68,644 KB
testcase_09 AC 840 ms
68,648 KB
testcase_10 AC 815 ms
68,548 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int x = sc.nextInt();
        int[] cals = new int[n];
        for (int i = 0; i < n; i++) {
            cals[i] = sc.nextInt();
        }
        boolean[][] dp = new boolean[n][n];
        for (int i = 1; i < n; i++) {
            for (int j = 0; j + i < n; j++) {
                int sum = 0;
                for (int k = j; !dp[j][j + i]; k++) {
                    sum += cals[k];
                    if (sum > x) {
                        break;
                    }
                    dp[j][j + i] = !dp[k + 1][j + i];
                }
                sum = 0;
                for (int k = j + i; !dp[j][j + i]; k--) {
                    sum += cals[k];
                    if (sum > x) {
                        break;
                    }
                    dp[j][j + i] = !dp[j][k - 1];
                }
            }
        }
        if (dp[0][n - 1]) {
            System.out.println("A");
        } else {
            System.out.println("B");
        }
    }
}
0