結果

問題 No.1861 Required Number
ユーザー horitaka1999horitaka1999
提出日時 2022-03-05 00:18:41
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 839 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 906,536 KB
最終ジャッジ日時 2024-07-18 23:34:59
合計ジャッジ時間 28,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 785 ms
228,900 KB
testcase_04 AC 808 ms
228,720 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 56 ms
64,000 KB
testcase_08 AC 69 ms
68,736 KB
testcase_09 AC 53 ms
63,232 KB
testcase_10 AC 68 ms
70,400 KB
testcase_11 AC 70 ms
69,632 KB
testcase_12 AC 61 ms
65,280 KB
testcase_13 AC 69 ms
69,760 KB
testcase_14 AC 62 ms
67,200 KB
testcase_15 AC 67 ms
70,528 KB
testcase_16 AC 51 ms
63,104 KB
testcase_17 AC 64 ms
68,608 KB
testcase_18 AC 69 ms
70,528 KB
testcase_19 AC 70 ms
69,504 KB
testcase_20 AC 70 ms
69,888 KB
testcase_21 AC 68 ms
70,656 KB
testcase_22 AC 69 ms
69,504 KB
testcase_23 AC 67 ms
68,608 KB
testcase_24 AC 363 ms
130,076 KB
testcase_25 AC 809 ms
213,364 KB
testcase_26 AC 206 ms
99,584 KB
testcase_27 AC 343 ms
125,212 KB
testcase_28 AC 376 ms
133,144 KB
testcase_29 AC 245 ms
108,672 KB
testcase_30 AC 116 ms
84,072 KB
testcase_31 AC 848 ms
215,300 KB
testcase_32 AC 147 ms
88,800 KB
testcase_33 AC 589 ms
170,752 KB
testcase_34 AC 691 ms
188,856 KB
testcase_35 AC 691 ms
190,464 KB
testcase_36 AC 236 ms
110,976 KB
testcase_37 AC 370 ms
130,432 KB
testcase_38 AC 699 ms
192,384 KB
testcase_39 AC 416 ms
136,696 KB
testcase_40 AC 855 ms
214,656 KB
testcase_41 AC 735 ms
205,696 KB
testcase_42 AC 643 ms
182,400 KB
testcase_43 AC 377 ms
131,968 KB
testcase_44 AC 43 ms
54,144 KB
04_evil_1.txt TLE -
04_evil_2.txt TLE -
04_evil_3.txt TLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,K = map(int,input().split())
ldp = [[False] * (K+1) for _ in range(N+2)]
ldp[0][0] = True
rdp = [[False] * (K+1) for _ in range(N+2)]
rdp[N+1][0] = True
INF = float('inf')
MIN = [INF for _ in range(K+1)]
MAX = [0 for _ in range(K+1)]

A = [0] + list(map(int,input().split()))
for i in range(1,N+1):
    for k in range(K+1):
        ldp[i][k] |= ldp[i-1][k]
        if k >= A[i]:
            ldp[i][k] |= ldp[i-1][k-A[i]]
for i in reversed(range(1,N+1)):
    for k in range(K+1):
        rdp[i][k] |= rdp[i+1][k]
        if k >= A[i]:
            rdp[i][k] |= rdp[i+1][k-A[i]]
if ldp[N][K]:
    cnt = 0
    for i in range(1,N+1):
        flag = True
        for x in range(K+1):
            if ldp[i-1][x] and rdp[i+1][K-x]:
                flag = False
        cnt += flag
    print(cnt)
else:
    print(-1)
0