結果

問題 No.973 余興
ユーザー ks2mks2m
提出日時 2020-01-17 23:16:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,462 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 77,792 KB
実行使用メモリ 60,516 KB
最終ジャッジ日時 2024-06-26 00:29:29
合計ジャッジ時間 56,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,276 KB
testcase_01 AC 114 ms
40,952 KB
testcase_02 AC 108 ms
40,680 KB
testcase_03 AC 108 ms
40,924 KB
testcase_04 AC 117 ms
40,948 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 99 ms
40,400 KB
testcase_11 AC 1,121 ms
48,624 KB
testcase_12 AC 640 ms
45,844 KB
testcase_13 WA -
testcase_14 AC 1,096 ms
48,040 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 56 ms
37,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 73 ms
38,000 KB
testcase_23 AC 61 ms
37,352 KB
testcase_24 AC 74 ms
38,040 KB
testcase_25 AC 63 ms
36,840 KB
testcase_26 AC 70 ms
37,972 KB
testcase_27 AC 68 ms
38,184 KB
testcase_28 WA -
testcase_29 AC 82 ms
38,208 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,489 ms
45,928 KB
testcase_35 AC 2,839 ms
48,696 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 1,524 ms
46,004 KB
testcase_39 WA -
testcase_40 AC 49 ms
37,032 KB
testcase_41 AC 50 ms
37,104 KB
testcase_42 AC 49 ms
37,076 KB
testcase_43 WA -
testcase_44 AC 49 ms
36,972 KB
testcase_45 WA -
testcase_46 AC 3,614 ms
47,936 KB
testcase_47 WA -
testcase_48 AC 1,810 ms
44,988 KB
testcase_49 WA -
testcase_50 AC 3,783 ms
47,832 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 910 ms
45,668 KB
testcase_54 AC 1,678 ms
48,608 KB
testcase_55 AC 1,744 ms
49,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int x = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		for (int i = 0; i < n; i++) {
			int[] dp = new int[n];
			for (int r = i + 1; r < n; r++) {
				TreeSet<Integer> set = new TreeSet<>();
				long sum = a[r];
				for (int k = r - 1; k >= i; k--) {
					if (k == i) {
						set.add(0);
						break;
					}
					sum += a[k];
					set.add(dp[k]);
					if (sum > x) {
						break;
					}
				}
				for (int j = 0; j < n; j++) {
					if (!set.contains(j)) {
						dp[r] = j;
						break;
					}
				}
			}
			for (int r = i - 1; r >= 0; r--) {
				TreeSet<Integer> set = new TreeSet<>();
				long sum = a[r];
				for (int k = r + 1; k <= i; k++) {
					if (k == i) {
						set.add(0);
						break;
					}
					sum += a[k];
					set.add(dp[k]);
					if (sum > x) {
						break;
					}
				}
				for (int j = 0; j < n; j++) {
					if (!set.contains(j)) {
						dp[r] = j;
						break;
					}
				}
			}
			if (dp[0] != dp[n - 1]) {
				System.out.println("A");
				return;
			}
		}
		System.out.println("B");
	}
}
0