結果

問題 No.973 余興
ユーザー neterukunneterukun
提出日時 2020-01-19 16:15:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 250,752 KB
最終ジャッジ日時 2024-07-02 21:45:09
合計ジャッジ時間 9,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 202 ms
250,368 KB
testcase_06 AC 195 ms
250,276 KB
testcase_07 AC 199 ms
250,240 KB
testcase_08 AC 202 ms
250,000 KB
testcase_09 AC 203 ms
250,464 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 102 ms
135,920 KB
testcase_14 WA -
testcase_15 AC 39 ms
60,544 KB
testcase_16 AC 38 ms
60,672 KB
testcase_17 WA -
testcase_18 AC 37 ms
59,008 KB
testcase_19 AC 35 ms
58,880 KB
testcase_20 AC 36 ms
57,728 KB
testcase_21 AC 37 ms
60,800 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 38 ms
59,392 KB
testcase_29 WA -
testcase_30 AC 197 ms
250,220 KB
testcase_31 AC 204 ms
250,496 KB
testcase_32 AC 193 ms
250,624 KB
testcase_33 AC 195 ms
250,624 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 204 ms
250,496 KB
testcase_37 AC 196 ms
250,496 KB
testcase_38 WA -
testcase_39 AC 195 ms
250,624 KB
testcase_40 WA -
testcase_41 AC 35 ms
52,224 KB
testcase_42 AC 33 ms
52,352 KB
testcase_43 AC 34 ms
51,840 KB
testcase_44 WA -
testcase_45 AC 32 ms
51,712 KB
testcase_46 WA -
testcase_47 AC 189 ms
250,140 KB
testcase_48 WA -
testcase_49 AC 193 ms
250,504 KB
testcase_50 WA -
testcase_51 AC 199 ms
250,624 KB
testcase_52 AC 198 ms
250,404 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
a = list(map(int, input().split()))

ruiseki = [0] * (n + 1)
for i in range(n):
    ruiseki[i + 1] = ruiseki[i] + a[i]
    

def solve(l, r):
    # [l, r)のシュークリームが残っているときの先手の勝ち負け
    if r - l == 0:
        dp[l][r] = True
        return True
    if r - l == 1:
        dp[l][r] = False
        return False
    if dp[l][r] is not None:
        return dp[l][r]

    tmp = False
    for newl in range(l + 1, r + 1):
        if ruiseki[newl] - ruiseki[l] <= x:
            tmp |= not solve(newl, r)
    for newr in range(l, r):
        if ruiseki[r] - ruiseki[newr] <= x:
            tmp |= not solve(l, newr)
    dp[l][r] = tmp
    
    return tmp

dp = [[0] * (n + 1) for i in range(n + 1)]
if solve(0, n):
    print("A")
else:
    print("B")
0