結果

問題 No.1861 Required Number
ユーザー shiomusubi496shiomusubi496
提出日時 2022-03-02 10:07:23
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 829 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 901,088 KB
最終ジャッジ日時 2024-07-18 22:20:22
合計ジャッジ時間 28,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 44 ms
66,724 KB
testcase_02 AC 39 ms
53,072 KB
testcase_03 AC 838 ms
227,400 KB
testcase_04 AC 769 ms
227,460 KB
testcase_05 AC 38 ms
52,072 KB
testcase_06 AC 38 ms
53,168 KB
testcase_07 AC 47 ms
61,492 KB
testcase_08 AC 56 ms
64,120 KB
testcase_09 AC 45 ms
60,300 KB
testcase_10 AC 53 ms
64,016 KB
testcase_11 AC 51 ms
63,584 KB
testcase_12 AC 48 ms
62,348 KB
testcase_13 AC 54 ms
63,392 KB
testcase_14 AC 50 ms
62,528 KB
testcase_15 AC 56 ms
65,188 KB
testcase_16 AC 46 ms
60,972 KB
testcase_17 AC 50 ms
62,560 KB
testcase_18 AC 53 ms
63,744 KB
testcase_19 AC 56 ms
64,780 KB
testcase_20 AC 56 ms
64,680 KB
testcase_21 AC 54 ms
64,588 KB
testcase_22 AC 54 ms
64,248 KB
testcase_23 AC 52 ms
63,008 KB
testcase_24 AC 333 ms
129,432 KB
testcase_25 AC 685 ms
204,320 KB
testcase_26 AC 174 ms
90,280 KB
testcase_27 AC 290 ms
112,296 KB
testcase_28 AC 341 ms
132,444 KB
testcase_29 AC 219 ms
108,500 KB
testcase_30 AC 99 ms
83,388 KB
testcase_31 AC 688 ms
204,184 KB
testcase_32 AC 125 ms
88,016 KB
testcase_33 AC 532 ms
170,676 KB
testcase_34 AC 576 ms
181,632 KB
testcase_35 AC 576 ms
181,068 KB
testcase_36 AC 218 ms
109,920 KB
testcase_37 AC 332 ms
130,256 KB
testcase_38 AC 589 ms
181,408 KB
testcase_39 AC 359 ms
135,192 KB
testcase_40 AC 689 ms
204,296 KB
testcase_41 AC 658 ms
204,356 KB
testcase_42 AC 552 ms
181,044 KB
testcase_43 AC 333 ms
131,496 KB
testcase_44 AC 38 ms
52,588 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
        if not_use:
            ans += 1
    print(ans)
0