結果

問題 No.973 余興
ユーザー titiatitia
提出日時 2020-02-09 04:35:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 914 ms / 4,000 ms
コード長 633 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 272,848 KB
最終ジャッジ日時 2024-10-01 05:42:08
合計ジャッジ時間 29,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
272,832 KB
testcase_01 AC 904 ms
272,848 KB
testcase_02 AC 890 ms
272,640 KB
testcase_03 AC 869 ms
272,708 KB
testcase_04 AC 887 ms
272,768 KB
testcase_05 AC 898 ms
272,592 KB
testcase_06 AC 850 ms
272,848 KB
testcase_07 AC 852 ms
272,740 KB
testcase_08 AC 914 ms
272,016 KB
testcase_09 AC 894 ms
272,804 KB
testcase_10 AC 858 ms
264,576 KB
testcase_11 AC 246 ms
137,120 KB
testcase_12 AC 242 ms
137,112 KB
testcase_13 AC 243 ms
137,088 KB
testcase_14 AC 238 ms
137,088 KB
testcase_15 AC 87 ms
83,532 KB
testcase_16 AC 85 ms
84,028 KB
testcase_17 AC 76 ms
80,416 KB
testcase_18 AC 83 ms
82,284 KB
testcase_19 AC 84 ms
82,248 KB
testcase_20 AC 75 ms
80,256 KB
testcase_21 AC 90 ms
84,096 KB
testcase_22 AC 92 ms
83,496 KB
testcase_23 AC 79 ms
82,492 KB
testcase_24 AC 82 ms
82,048 KB
testcase_25 AC 60 ms
73,216 KB
testcase_26 AC 78 ms
80,896 KB
testcase_27 AC 95 ms
85,604 KB
testcase_28 AC 82 ms
82,328 KB
testcase_29 AC 81 ms
82,024 KB
testcase_30 AC 704 ms
272,460 KB
testcase_31 AC 714 ms
272,460 KB
testcase_32 AC 720 ms
272,512 KB
testcase_33 AC 744 ms
272,336 KB
testcase_34 AC 752 ms
271,232 KB
testcase_35 AC 714 ms
272,552 KB
testcase_36 AC 683 ms
251,776 KB
testcase_37 AC 684 ms
251,776 KB
testcase_38 AC 719 ms
271,924 KB
testcase_39 AC 740 ms
271,872 KB
testcase_40 AC 36 ms
51,840 KB
testcase_41 AC 32 ms
51,968 KB
testcase_42 AC 32 ms
52,224 KB
testcase_43 AC 33 ms
51,968 KB
testcase_44 AC 31 ms
51,968 KB
testcase_45 AC 47 ms
64,852 KB
testcase_46 AC 791 ms
272,464 KB
testcase_47 AC 793 ms
272,224 KB
testcase_48 AC 763 ms
272,392 KB
testcase_49 AC 702 ms
251,892 KB
testcase_50 AC 758 ms
270,584 KB
testcase_51 AC 784 ms
272,328 KB
testcase_52 AC 672 ms
272,528 KB
testcase_53 AC 625 ms
268,872 KB
testcase_54 AC 678 ms
272,416 KB
testcase_55 AC 686 ms
272,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,X=map(int,input().split())
A=list(map(int,input().split()))

DP=[[0]*N for i in range(N)]

for l in range(N-1):
    for i in range(N-l):
        j=i+l
        if DP[i][j]==0:
            w=0
            for k in range(j+1,N):
                w+=A[k]
                if w<=X:
                    DP[i][k]=1
                else:
                    break

            w=0
            for k in range(i-1,-1,-1):
                w+=A[k]
                if w<=X:
                    DP[k][j]=1
                else:
                    break

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