結果

問題 No.973 余興
ユーザー mkawa2mkawa2
提出日時 2020-01-17 23:31:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,249 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 86,252 KB
最終ジャッジ日時 2024-06-26 01:17:07
合計ジャッジ時間 56,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
81,280 KB
testcase_01 WA -
testcase_02 AC 110 ms
81,664 KB
testcase_03 AC 116 ms
81,280 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 109 ms
81,436 KB
testcase_07 WA -
testcase_08 AC 104 ms
81,536 KB
testcase_09 AC 110 ms
81,152 KB
testcase_10 AC 113 ms
81,408 KB
testcase_11 WA -
testcase_12 AC 654 ms
81,212 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 45 ms
55,168 KB
testcase_16 AC 46 ms
55,680 KB
testcase_17 AC 47 ms
54,912 KB
testcase_18 AC 44 ms
54,784 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 45 ms
55,168 KB
testcase_22 WA -
testcase_23 AC 47 ms
55,256 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 54 ms
62,464 KB
testcase_28 AC 46 ms
54,912 KB
testcase_29 WA -
testcase_30 AC 2,211 ms
84,784 KB
testcase_31 AC 2,194 ms
84,644 KB
testcase_32 AC 2,217 ms
84,864 KB
testcase_33 AC 2,198 ms
84,864 KB
testcase_34 AC 2,175 ms
84,992 KB
testcase_35 WA -
testcase_36 AC 2,214 ms
85,504 KB
testcase_37 AC 2,216 ms
84,992 KB
testcase_38 AC 2,194 ms
84,992 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 39 ms
52,096 KB
testcase_42 AC 40 ms
52,480 KB
testcase_43 AC 40 ms
52,096 KB
testcase_44 AC 40 ms
52,224 KB
testcase_45 AC 40 ms
52,224 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 3,832 ms
85,120 KB
testcase_49 AC 3,406 ms
84,608 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 1,169 ms
84,736 KB
testcase_54 WA -
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    def win(l,r):
        if (l,r) in dp:return dp[l,r]
        if l+1==r:return False
        if l==r:return True
        res=False
        for nl in range(l+1,min(r,lto[l])):
            if not win(nl,r):
                res=True
                break
        for nr in range(r-1,max(l,rto[r]),-1):
            if res:break
            if win(l,nr)==0:
                res=1
                break
        dp[l,r]=res
        return res

    n,x=MI()
    aa=LI()

    lto=[-1]*n
    r=-1
    s=0
    for l in range(n):
        while r<n and s<=x:
            r+=1
            if r>=n:break
            s+=aa[r]
        lto[l]=r
        s-=aa[l]

    rto=[-1]*(n+1)
    l=n
    s=0
    for r in range(n,-1,-1):
        while l>=0 and s<=x:
            l-=1
            if l<0:break
            s+=aa[l]
        rto[r]=l
        s-=aa[r-1]

    dp={}
    if win(0,n):print("A")
    else:print("B")

main()
0