結果

問題 No.1861 Required Number
ユーザー shiomusubi496shiomusubi496
提出日時 2022-03-02 11:44:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 2,500 ms
コード長 827 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 227,104 KB
最終ジャッジ日時 2024-07-18 22:24:18
合計ジャッジ時間 13,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,340 KB
testcase_01 AC 38 ms
59,608 KB
testcase_02 AC 33 ms
52,700 KB
testcase_03 AC 521 ms
227,104 KB
testcase_04 AC 554 ms
227,012 KB
testcase_05 AC 37 ms
52,476 KB
testcase_06 AC 34 ms
53,316 KB
testcase_07 AC 42 ms
61,508 KB
testcase_08 AC 53 ms
64,100 KB
testcase_09 AC 44 ms
60,632 KB
testcase_10 AC 46 ms
62,944 KB
testcase_11 AC 46 ms
62,416 KB
testcase_12 AC 42 ms
61,300 KB
testcase_13 AC 46 ms
62,988 KB
testcase_14 AC 46 ms
62,532 KB
testcase_15 AC 47 ms
63,076 KB
testcase_16 AC 46 ms
60,344 KB
testcase_17 AC 48 ms
62,448 KB
testcase_18 AC 46 ms
63,068 KB
testcase_19 AC 51 ms
64,240 KB
testcase_20 AC 48 ms
62,948 KB
testcase_21 AC 44 ms
62,496 KB
testcase_22 AC 45 ms
63,056 KB
testcase_23 AC 44 ms
63,880 KB
testcase_24 AC 183 ms
129,660 KB
testcase_25 AC 366 ms
204,192 KB
testcase_26 AC 106 ms
90,176 KB
testcase_27 AC 164 ms
112,432 KB
testcase_28 AC 191 ms
132,368 KB
testcase_29 AC 132 ms
108,104 KB
testcase_30 AC 74 ms
83,400 KB
testcase_31 AC 376 ms
204,280 KB
testcase_32 AC 89 ms
88,076 KB
testcase_33 AC 268 ms
158,192 KB
testcase_34 AC 317 ms
181,072 KB
testcase_35 AC 319 ms
181,288 KB
testcase_36 AC 142 ms
110,264 KB
testcase_37 AC 191 ms
129,724 KB
testcase_38 AC 314 ms
181,264 KB
testcase_39 AC 203 ms
135,136 KB
testcase_40 AC 374 ms
204,156 KB
testcase_41 AC 363 ms
204,512 KB
testcase_42 AC 303 ms
181,052 KB
testcase_43 AC 193 ms
131,580 KB
testcase_44 AC 32 ms
52,756 KB
04_evil_1.txt MLE -
04_evil_2.txt MLE -
04_evil_3.txt MLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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]] = 1
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]] = 1
if not dpl[N][K]:
    print(-1)
else:
    ans = 0
    for i in range(N):
        not_use = 1
        for j in range(K + 1):
            if dpl[i][j] and dpr[i + 1][K - j]:
                not_use = 0
                break
        if not_use:
            ans += 1
    print(ans)
0