結果

問題 No.973 余興
ユーザー convexineqconvexineq
提出日時 2020-01-17 23:39:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,139 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 273,200 KB
最終ジャッジ日時 2024-06-26 01:36:31
合計ジャッジ時間 22,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 592 ms
273,112 KB
testcase_01 AC 603 ms
272,652 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 559 ms
272,956 KB
testcase_05 WA -
testcase_06 AC 548 ms
273,020 KB
testcase_07 AC 558 ms
272,616 KB
testcase_08 AC 573 ms
271,948 KB
testcase_09 WA -
testcase_10 AC 529 ms
265,296 KB
testcase_11 AC 220 ms
146,712 KB
testcase_12 AC 206 ms
146,756 KB
testcase_13 WA -
testcase_14 AC 204 ms
146,112 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 87 ms
82,484 KB
testcase_19 WA -
testcase_20 AC 82 ms
80,780 KB
testcase_21 AC 92 ms
83,840 KB
testcase_22 AC 102 ms
84,224 KB
testcase_23 AC 95 ms
82,528 KB
testcase_24 AC 91 ms
82,304 KB
testcase_25 AC 74 ms
78,720 KB
testcase_26 WA -
testcase_27 AC 103 ms
85,756 KB
testcase_28 AC 90 ms
82,560 KB
testcase_29 AC 89 ms
82,352 KB
testcase_30 AC 562 ms
272,512 KB
testcase_31 AC 562 ms
272,384 KB
testcase_32 AC 559 ms
272,512 KB
testcase_33 AC 576 ms
272,384 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 555 ms
266,792 KB
testcase_37 AC 551 ms
266,712 KB
testcase_38 AC 564 ms
271,616 KB
testcase_39 WA -
testcase_40 AC 38 ms
52,224 KB
testcase_41 AC 38 ms
52,224 KB
testcase_42 AC 38 ms
52,096 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 51 ms
62,848 KB
testcase_46 AC 731 ms
272,272 KB
testcase_47 AC 743 ms
272,256 KB
testcase_48 AC 722 ms
272,468 KB
testcase_49 WA -
testcase_50 AC 710 ms
270,752 KB
testcase_51 AC 732 ms
272,636 KB
testcase_52 WA -
testcase_53 AC 432 ms
269,184 KB
testcase_54 AC 438 ms
272,640 KB
testcase_55 AC 464 ms
272,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
read = sys.stdin.read

#n,m,*d= [int(i) for i in read().split()]
#a,t,k = [int(i) for i in readline().split()]

n,x,*a = [int(i) for i in read().split()]

r = [0]*n
l = [0]*n
r[-1] = n
pt = 0
res = -a[0]
for i in range(n-1):
    while pt < n and res+a[pt] <= x:
        res += a[pt]
        pt += 1
    r[i] = pt
    res -= a[i]

pt = n-1
res = -a[n-1]
for i in range(n-1,0,-1):
    while pt >= 0 and res+a[pt] <= x:
        res += a[pt]
        pt -= 1
    l[i] = pt+1
    res -= a[i-1]


dp = [[0]*n for _ in range(n)]

#for i in dp: print(*i)
for j in range(1,n):
    for k in range(l[j],j):
        dp[k][j] = 1

#for i in dp: print(*i)
#print(l,r)
for i in range(n-2,-1,-1):
    j = i
    while j < n:
        if dp[i][j] == 0:
            dp[i][j] = -1
            for k in range(l[i],i):
                dp[k][j] = 1
            dp[i][j+1:r[j]] = [1]*(r[j]-(j+1))
            j = r[j]
        else:
            j += 1
    #print(dp)

#for i in dp: print(*i)
    
a = dp[0][-1]

if a == 1:
    print("A")
else:
    print("B")



0