結果

問題 No.1861 Required Number
ユーザー horitaka1999horitaka1999
提出日時 2022-03-05 00:17:01
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 839 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 1,073,108 KB
最終ジャッジ日時 2024-07-18 23:33:02
合計ジャッジ時間 28,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 WA -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 866 ms
228,600 KB
testcase_05 AC 41 ms
55,456 KB
testcase_06 AC 39 ms
54,660 KB
testcase_07 AC 55 ms
64,484 KB
testcase_08 AC 66 ms
69,264 KB
testcase_09 WA -
testcase_10 AC 67 ms
72,164 KB
testcase_11 AC 66 ms
70,960 KB
testcase_12 WA -
testcase_13 AC 66 ms
70,316 KB
testcase_14 AC 61 ms
68,088 KB
testcase_15 AC 65 ms
71,824 KB
testcase_16 WA -
testcase_17 AC 62 ms
69,232 KB
testcase_18 AC 66 ms
71,312 KB
testcase_19 AC 66 ms
70,116 KB
testcase_20 AC 67 ms
71,152 KB
testcase_21 AC 69 ms
72,256 KB
testcase_22 AC 65 ms
70,104 KB
testcase_23 AC 63 ms
70,292 KB
testcase_24 AC 386 ms
129,644 KB
testcase_25 AC 887 ms
213,144 KB
testcase_26 AC 213 ms
99,508 KB
testcase_27 AC 354 ms
125,128 KB
testcase_28 AC 400 ms
132,696 KB
testcase_29 AC 255 ms
108,652 KB
testcase_30 AC 108 ms
83,940 KB
testcase_31 AC 853 ms
215,416 KB
testcase_32 AC 137 ms
88,664 KB
testcase_33 AC 608 ms
170,808 KB
testcase_34 AC 712 ms
188,820 KB
testcase_35 AC 716 ms
190,540 KB
testcase_36 AC 229 ms
111,048 KB
testcase_37 AC 421 ms
130,604 KB
testcase_38 AC 719 ms
192,776 KB
testcase_39 AC 414 ms
136,672 KB
testcase_40 AC 870 ms
214,860 KB
testcase_41 AC 759 ms
205,744 KB
testcase_42 AC 639 ms
182,456 KB
testcase_43 AC 383 ms
132,228 KB
testcase_44 AC 38 ms
53,856 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(0)
0