結果

問題 No.1861 Required Number
ユーザー 👑 KazunKazun
提出日時 2022-03-04 23:46:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 481 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 328,268 KB
最終ジャッジ日時 2024-07-18 22:21:03
合計ジャッジ時間 8,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,208 KB
testcase_01 WA -
testcase_02 AC 33 ms
52,112 KB
testcase_03 AC 412 ms
313,544 KB
testcase_04 AC 425 ms
314,076 KB
testcase_05 AC 33 ms
53,472 KB
testcase_06 AC 32 ms
52,248 KB
testcase_07 AC 41 ms
60,976 KB
testcase_08 AC 42 ms
62,904 KB
testcase_09 WA -
testcase_10 AC 39 ms
59,684 KB
testcase_11 AC 39 ms
60,404 KB
testcase_12 WA -
testcase_13 AC 40 ms
60,508 KB
testcase_14 AC 39 ms
60,044 KB
testcase_15 AC 39 ms
60,096 KB
testcase_16 WA -
testcase_17 AC 41 ms
59,796 KB
testcase_18 AC 42 ms
60,416 KB
testcase_19 AC 42 ms
62,496 KB
testcase_20 AC 39 ms
60,888 KB
testcase_21 AC 40 ms
59,904 KB
testcase_22 AC 38 ms
61,344 KB
testcase_23 AC 38 ms
59,624 KB
testcase_24 AC 173 ms
179,440 KB
testcase_25 AC 373 ms
325,924 KB
testcase_26 AC 100 ms
108,792 KB
testcase_27 AC 161 ms
155,276 KB
testcase_28 AC 181 ms
178,668 KB
testcase_29 AC 126 ms
124,024 KB
testcase_30 AC 68 ms
83,092 KB
testcase_31 AC 374 ms
328,268 KB
testcase_32 AC 73 ms
82,236 KB
testcase_33 AC 261 ms
246,280 KB
testcase_34 AC 328 ms
299,952 KB
testcase_35 AC 328 ms
303,124 KB
testcase_36 AC 121 ms
124,592 KB
testcase_37 AC 179 ms
177,512 KB
testcase_38 AC 339 ms
307,948 KB
testcase_39 AC 204 ms
200,900 KB
testcase_40 AC 378 ms
327,524 KB
testcase_41 AC 355 ms
315,904 KB
testcase_42 AC 305 ms
287,068 KB
testcase_43 AC 180 ms
177,200 KB
testcase_44 AC 32 ms
52,940 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]

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