結果

問題 No.1861 Required Number
ユーザー shiomusubi496shiomusubi496
提出日時 2022-03-02 11:42:40
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 851 bytes
コンパイル時間 676 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 1,075,048 KB
最終ジャッジ日時 2024-07-18 22:24:46
合計ジャッジ時間 26,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 47 ms
67,516 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 803 ms
227,136 KB
testcase_05 AC 39 ms
52,272 KB
testcase_06 AC 38 ms
52,620 KB
testcase_07 AC 47 ms
61,708 KB
testcase_08 AC 52 ms
64,604 KB
testcase_09 AC 45 ms
59,712 KB
testcase_10 AC 49 ms
62,544 KB
testcase_11 AC 51 ms
63,636 KB
testcase_12 AC 48 ms
61,036 KB
testcase_13 AC 50 ms
63,280 KB
testcase_14 AC 51 ms
63,412 KB
testcase_15 AC 51 ms
63,276 KB
testcase_16 AC 44 ms
61,528 KB
testcase_17 AC 50 ms
62,284 KB
testcase_18 AC 51 ms
62,440 KB
testcase_19 AC 55 ms
64,376 KB
testcase_20 AC 53 ms
63,520 KB
testcase_21 AC 49 ms
61,676 KB
testcase_22 AC 52 ms
63,264 KB
testcase_23 AC 51 ms
62,424 KB
testcase_24 AC 276 ms
129,316 KB
testcase_25 AC 549 ms
204,428 KB
testcase_26 AC 146 ms
90,000 KB
testcase_27 AC 234 ms
112,468 KB
testcase_28 AC 282 ms
132,536 KB
testcase_29 AC 187 ms
108,344 KB
testcase_30 AC 91 ms
83,324 KB
testcase_31 AC 547 ms
204,252 KB
testcase_32 AC 111 ms
87,936 KB
testcase_33 AC 392 ms
158,284 KB
testcase_34 AC 469 ms
181,336 KB
testcase_35 AC 472 ms
181,396 KB
testcase_36 AC 196 ms
110,068 KB
testcase_37 AC 275 ms
130,316 KB
testcase_38 AC 464 ms
181,644 KB
testcase_39 AC 299 ms
135,272 KB
testcase_40 AC 548 ms
204,216 KB
testcase_41 AC 524 ms
204,376 KB
testcase_42 AC 448 ms
181,240 KB
testcase_43 AC 283 ms
131,756 KB
testcase_44 AC 38 ms
52,704 KB
04_evil_1.txt TLE -
04_evil_2.txt TLE -
04_evil_3.txt TLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dpl = [[False] * (K + 1) for _ in range(N + 1)]
dpr = [[False] * (K + 1) for _ in range(N + 1)]
dpl[0][0] = dpr[N][0] = True

for i in range(N):
    for j in range(K + 1):
        dpl[i + 1][j] = dpl[i][j]
    for j in range(0, K - A[i] + 1):
        if dpl[i][j]:
            dpl[i + 1][j + A[i]] = True
for i in range(N - 1, -1, -1):
    for j in range(K + 1):
        dpr[i][j] = dpr[i + 1][j]
    for j in range(0, K - A[i] + 1):
        if dpr[i + 1][j]:
            dpr[i][j + A[i]] = True
if not dpl[N][K]:
    print(-1)
else:
    ans = 0
    for i in range(N):
        not_use = True
        for j in range(K + 1):
            if dpl[i][j] and dpr[i + 1][K - j]:
                not_use = False
                break
        if not_use:
            ans += 1
    print(ans)
0