結果

問題 No.1861 Required Number
ユーザー roarisroaris
提出日時 2022-03-04 21:58:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,500 ms
コード長 700 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 155,620 KB
最終ジャッジ日時 2024-07-18 22:51:04
合計ジャッジ時間 23,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,884 KB
testcase_01 AC 40 ms
59,816 KB
testcase_02 AC 36 ms
53,592 KB
testcase_03 AC 441 ms
155,588 KB
testcase_04 AC 415 ms
155,620 KB
testcase_05 AC 39 ms
54,524 KB
testcase_06 AC 38 ms
54,520 KB
testcase_07 AC 42 ms
60,800 KB
testcase_08 AC 49 ms
65,324 KB
testcase_09 AC 41 ms
60,140 KB
testcase_10 AC 47 ms
64,284 KB
testcase_11 AC 48 ms
63,684 KB
testcase_12 AC 47 ms
60,616 KB
testcase_13 AC 52 ms
63,900 KB
testcase_14 AC 51 ms
63,516 KB
testcase_15 AC 48 ms
63,684 KB
testcase_16 AC 39 ms
59,376 KB
testcase_17 AC 48 ms
64,364 KB
testcase_18 AC 50 ms
64,212 KB
testcase_19 AC 51 ms
64,324 KB
testcase_20 AC 51 ms
64,412 KB
testcase_21 AC 47 ms
63,672 KB
testcase_22 AC 48 ms
63,764 KB
testcase_23 AC 51 ms
64,884 KB
testcase_24 AC 201 ms
89,592 KB
testcase_25 AC 422 ms
134,448 KB
testcase_26 AC 127 ms
87,648 KB
testcase_27 AC 192 ms
88,572 KB
testcase_28 AC 218 ms
88,808 KB
testcase_29 AC 160 ms
88,528 KB
testcase_30 AC 72 ms
74,068 KB
testcase_31 AC 432 ms
134,280 KB
testcase_32 AC 90 ms
82,264 KB
testcase_33 AC 306 ms
111,456 KB
testcase_34 AC 364 ms
132,552 KB
testcase_35 AC 358 ms
133,176 KB
testcase_36 AC 164 ms
88,532 KB
testcase_37 AC 199 ms
88,172 KB
testcase_38 AC 372 ms
134,232 KB
testcase_39 AC 243 ms
108,156 KB
testcase_40 AC 421 ms
134,428 KB
testcase_41 AC 402 ms
134,556 KB
testcase_42 AC 367 ms
128,988 KB
testcase_43 AC 202 ms
88,112 KB
testcase_44 AC 39 ms
54,244 KB
04_evil_1.txt TLE -
04_evil_2.txt TLE -
04_evil_3.txt TLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
dp1 = [False]*(K+1)
dp1[0] = True
dp2 = [[False]*(K+1) for _ in range(N+1)]
dp2[0][0] = True

for i in range(N):
    for j in range(K+1):
        if dp2[i][j]:
            dp2[i+1][j] = True
            
            if j+A[N-1-i]<=K:
                dp2[i+1][j+A[N-1-i]] = True

if not dp2[N][K]:
    exit(print(-1))

ans = 0

for i in range(N):
    for j in range(K+1):
        if dp1[j] and dp2[N-1-i][K-j]:
            break
    else:
        ans += 1
    
    for j in range(K, -1, -1):
        if dp1[j] and j+A[i]<=K:
            dp1[j+A[i]] = True

print(ans)
0