結果

問題 No.973 余興
ユーザー convexineqconvexineq
提出日時 2020-01-18 01:04:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 966 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 272,852 KB
最終ジャッジ日時 2024-06-26 04:17:48
合計ジャッジ時間 23,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 710 ms
272,700 KB
testcase_01 AC 714 ms
272,380 KB
testcase_02 AC 727 ms
272,460 KB
testcase_03 AC 643 ms
272,616 KB
testcase_04 AC 723 ms
272,704 KB
testcase_05 AC 762 ms
272,852 KB
testcase_06 AC 718 ms
272,648 KB
testcase_07 AC 758 ms
272,848 KB
testcase_08 AC 724 ms
272,036 KB
testcase_09 AC 768 ms
272,796 KB
testcase_10 AC 724 ms
264,900 KB
testcase_11 AC 213 ms
146,840 KB
testcase_12 AC 207 ms
146,704 KB
testcase_13 AC 213 ms
145,976 KB
testcase_14 AC 209 ms
146,064 KB
testcase_15 AC 97 ms
83,776 KB
testcase_16 AC 105 ms
84,200 KB
testcase_17 AC 86 ms
80,812 KB
testcase_18 AC 90 ms
82,256 KB
testcase_19 AC 97 ms
82,256 KB
testcase_20 AC 91 ms
80,840 KB
testcase_21 AC 101 ms
83,936 KB
testcase_22 AC 102 ms
84,052 KB
testcase_23 AC 88 ms
82,224 KB
testcase_24 AC 92 ms
82,168 KB
testcase_25 AC 78 ms
78,728 KB
testcase_26 AC 86 ms
80,812 KB
testcase_27 AC 111 ms
85,732 KB
testcase_28 AC 94 ms
82,428 KB
testcase_29 AC 94 ms
82,244 KB
testcase_30 AC 515 ms
272,420 KB
testcase_31 AC 506 ms
272,416 KB
testcase_32 AC 503 ms
272,432 KB
testcase_33 AC 522 ms
272,348 KB
testcase_34 AC 538 ms
271,444 KB
testcase_35 AC 501 ms
272,272 KB
testcase_36 AC 491 ms
266,888 KB
testcase_37 AC 493 ms
266,708 KB
testcase_38 AC 505 ms
271,848 KB
testcase_39 AC 518 ms
271,820 KB
testcase_40 AC 41 ms
52,204 KB
testcase_41 AC 41 ms
52,332 KB
testcase_42 AC 40 ms
53,756 KB
testcase_43 AC 40 ms
53,340 KB
testcase_44 WA -
testcase_45 AC 56 ms
64,260 KB
testcase_46 AC 537 ms
272,748 KB
testcase_47 AC 536 ms
272,124 KB
testcase_48 AC 542 ms
272,392 KB
testcase_49 AC 499 ms
256,696 KB
testcase_50 AC 522 ms
270,620 KB
testcase_51 AC 542 ms
272,784 KB
testcase_52 AC 505 ms
272,212 KB
testcase_53 AC 516 ms
268,824 KB
testcase_54 AC 474 ms
272,468 KB
testcase_55 AC 487 ms
272,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

r = [0]*n #r[i]= iから左にどこまで伸ばせるか
l = [0]*n #l[i]= iから右に...
pt = res = 0
for i in range(n-1):
    res -= a[i] 
    while pt < n and res+a[pt] <= x:
        res += a[pt]
        pt += 1
    r[i] = pt

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

dp = [[0]*n for _ in range(n)]
for i in range(n-1,-1,-1):
    j = i
    while j < n:
        if dp[i][j]:
            j += 1
        else: #0の場合、そこは負けで、上、右に1をのばす
            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]

if dp[0][-1] == 1:
    print("A")
else:
    print("B")
0