結果

問題 No.1861 Required Number
ユーザー 👑 KazunKazun
提出日時 2022-03-04 23:47:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,500 ms
コード長 537 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 328,908 KB
最終ジャッジ日時 2024-07-18 22:23:51
合計ジャッジ時間 8,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,072 KB
testcase_01 AC 37 ms
58,428 KB
testcase_02 AC 33 ms
53,000 KB
testcase_03 AC 436 ms
313,492 KB
testcase_04 AC 431 ms
314,100 KB
testcase_05 AC 34 ms
52,868 KB
testcase_06 AC 33 ms
52,804 KB
testcase_07 AC 40 ms
60,448 KB
testcase_08 AC 43 ms
62,776 KB
testcase_09 AC 40 ms
57,868 KB
testcase_10 AC 39 ms
59,104 KB
testcase_11 AC 40 ms
60,540 KB
testcase_12 AC 39 ms
59,716 KB
testcase_13 AC 42 ms
60,720 KB
testcase_14 AC 42 ms
60,240 KB
testcase_15 AC 42 ms
60,104 KB
testcase_16 AC 40 ms
60,968 KB
testcase_17 AC 42 ms
59,868 KB
testcase_18 AC 43 ms
60,748 KB
testcase_19 AC 42 ms
62,760 KB
testcase_20 AC 43 ms
61,552 KB
testcase_21 AC 40 ms
59,616 KB
testcase_22 AC 41 ms
62,684 KB
testcase_23 AC 41 ms
59,016 KB
testcase_24 AC 181 ms
179,040 KB
testcase_25 AC 380 ms
325,592 KB
testcase_26 AC 104 ms
108,652 KB
testcase_27 AC 157 ms
155,176 KB
testcase_28 AC 178 ms
178,212 KB
testcase_29 AC 123 ms
123,552 KB
testcase_30 AC 67 ms
82,948 KB
testcase_31 AC 379 ms
328,908 KB
testcase_32 AC 68 ms
82,308 KB
testcase_33 AC 266 ms
246,908 KB
testcase_34 AC 327 ms
300,000 KB
testcase_35 AC 338 ms
303,616 KB
testcase_36 AC 123 ms
124,520 KB
testcase_37 AC 183 ms
177,032 KB
testcase_38 AC 340 ms
307,944 KB
testcase_39 AC 200 ms
201,012 KB
testcase_40 AC 376 ms
328,068 KB
testcase_41 AC 359 ms
316,004 KB
testcase_42 AC 313 ms
286,852 KB
testcase_43 AC 182 ms
177,524 KB
testcase_44 AC 32 ms
53,344 KB
04_evil_1.txt RE -
04_evil_2.txt RE -
04_evil_3.txt RE -
04_evil_4.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(A):
    DP=[[0]*(K+1) for _ in range(N+2)]
    DP[0][0]=1

    for i,a in enumerate(A,1):
        D=DP[i-1].copy()
        for y in range(K,a-1,-1):
            D[y]|=D[y-a]
        DP[i]=D
    DP[-1][0]=1
    return DP

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

assert (N<=10**4) and (K<=10**3)

X=f(A)
Y=f(A[::-1])[::-1]

if X[N][K]==0:
    Ans=-1
else:
    Ans=0
    for i in range(1,N+1):
        flag=1
        for x in range(K+1):
            flag&=~(X[i-1][x]&Y[i+1][K-x])
        Ans+=flag

print(Ans)
0