結果

問題 No.973 余興
ユーザー convexineqconvexineq
提出日時 2020-01-17 23:54:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,081 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 272,844 KB
最終ジャッジ日時 2024-06-26 02:00:45
合計ジャッジ時間 21,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 609 ms
272,532 KB
testcase_01 AC 654 ms
272,780 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 580 ms
272,792 KB
testcase_05 WA -
testcase_06 AC 591 ms
272,524 KB
testcase_07 AC 575 ms
272,452 KB
testcase_08 AC 599 ms
271,848 KB
testcase_09 WA -
testcase_10 AC 566 ms
265,188 KB
testcase_11 AC 203 ms
146,432 KB
testcase_12 AC 195 ms
146,824 KB
testcase_13 WA -
testcase_14 AC 194 ms
146,456 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 91 ms
82,436 KB
testcase_19 WA -
testcase_20 AC 89 ms
80,600 KB
testcase_21 AC 96 ms
84,028 KB
testcase_22 AC 101 ms
83,584 KB
testcase_23 AC 98 ms
82,840 KB
testcase_24 AC 98 ms
82,460 KB
testcase_25 AC 80 ms
78,852 KB
testcase_26 WA -
testcase_27 AC 107 ms
86,036 KB
testcase_28 AC 90 ms
82,444 KB
testcase_29 AC 96 ms
82,232 KB
testcase_30 AC 476 ms
272,540 KB
testcase_31 AC 468 ms
272,548 KB
testcase_32 AC 469 ms
272,832 KB
testcase_33 AC 491 ms
272,616 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 462 ms
266,980 KB
testcase_37 AC 467 ms
266,984 KB
testcase_38 AC 470 ms
271,780 KB
testcase_39 WA -
testcase_40 AC 43 ms
53,492 KB
testcase_41 AC 43 ms
53,980 KB
testcase_42 AC 41 ms
53,352 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 54 ms
63,312 KB
testcase_46 AC 567 ms
272,364 KB
testcase_47 AC 574 ms
272,520 KB
testcase_48 AC 560 ms
272,604 KB
testcase_49 WA -
testcase_50 AC 562 ms
270,748 KB
testcase_51 AC 561 ms
272,680 KB
testcase_52 WA -
testcase_53 AC 430 ms
269,240 KB
testcase_54 AC 431 ms
272,280 KB
testcase_55 AC 454 ms
272,340 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 i in dp: print(*i)
#print(l,r)
for i in range(n-1,-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)

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

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



0