結果

問題 No.1861 Required Number
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-06 14:44:12
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 795 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 1,077,572 KB
最終ジャッジ日時 2024-07-21 00:14:39
合計ジャッジ時間 26,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
57,472 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 835 ms
234,272 KB
testcase_04 MLE -
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 44 ms
60,288 KB
testcase_08 AC 52 ms
63,744 KB
testcase_09 AC 46 ms
59,648 KB
testcase_10 AC 54 ms
62,464 KB
testcase_11 AC 55 ms
63,104 KB
testcase_12 AC 51 ms
61,056 KB
testcase_13 AC 49 ms
62,720 KB
testcase_14 AC 50 ms
63,232 KB
testcase_15 AC 49 ms
63,232 KB
testcase_16 AC 41 ms
59,520 KB
testcase_17 AC 49 ms
62,464 KB
testcase_18 AC 50 ms
63,104 KB
testcase_19 AC 55 ms
64,512 KB
testcase_20 AC 53 ms
63,744 KB
testcase_21 AC 48 ms
62,720 KB
testcase_22 AC 51 ms
63,360 KB
testcase_23 AC 51 ms
63,360 KB
testcase_24 AC 288 ms
129,152 KB
testcase_25 AC 595 ms
204,416 KB
testcase_26 AC 158 ms
89,984 KB
testcase_27 AC 248 ms
112,256 KB
testcase_28 AC 289 ms
132,608 KB
testcase_29 AC 199 ms
108,160 KB
testcase_30 AC 94 ms
83,328 KB
testcase_31 AC 607 ms
204,160 KB
testcase_32 AC 111 ms
87,936 KB
testcase_33 AC 426 ms
158,208 KB
testcase_34 AC 495 ms
181,504 KB
testcase_35 AC 495 ms
181,376 KB
testcase_36 AC 206 ms
110,080 KB
testcase_37 AC 294 ms
129,920 KB
testcase_38 AC 508 ms
181,248 KB
testcase_39 AC 315 ms
135,168 KB
testcase_40 AC 589 ms
204,288 KB
testcase_41 AC 574 ms
204,160 KB
testcase_42 AC 486 ms
180,992 KB
testcase_43 AC 303 ms
131,584 KB
testcase_44 AC 35 ms
52,224 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 i in range(n+1)]
dpr = [[False]*(k+1) for i in range(n+1)]
dpl[0][0] = True
dpr[n][0] = True

for i, a in enumerate(A):
    for j in range(k+1):
        dpl[i+1][j] = dpl[i][j]
    for j in range(k+1):
        if dpl[i][j] and j+a <= k:
            dpl[i+1][j+a] = True

for i in range(n-1, -1, -1):
    a = A[i]
    for j in range(k+1):
        dpr[i][j] = dpr[i+1][j]
    for j in range(k+1):
        if dpr[i+1][j] and j+a <= k:
            dpr[i][j+a] = True

if not dpl[n][k]:
    print(-1)
    exit()

ans = 0
for i in range(n):
    flag = True
    for j in range(k+1):
        if dpl[i][j] and dpr[i+1][k-j]:
            flag = False
            break
    if flag:
        ans += 1
print(ans)
0