結果

問題 No.1861 Required Number
ユーザー roarisroaris
提出日時 2022-03-04 21:48:33
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 836 bytes
コンパイル時間 1,054 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 814,988 KB
最終ジャッジ日時 2024-07-18 22:46:40
合計ジャッジ時間 27,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
62,468 KB
testcase_01 MLE -
testcase_02 AC 36 ms
53,896 KB
testcase_03 AC 628 ms
223,640 KB
testcase_04 AC 602 ms
223,396 KB
testcase_05 AC 37 ms
54,044 KB
testcase_06 AC 35 ms
54,436 KB
testcase_07 AC 43 ms
62,832 KB
testcase_08 AC 50 ms
65,512 KB
testcase_09 AC 40 ms
59,440 KB
testcase_10 AC 52 ms
65,524 KB
testcase_11 AC 50 ms
65,600 KB
testcase_12 AC 42 ms
61,000 KB
testcase_13 AC 53 ms
65,320 KB
testcase_14 AC 48 ms
64,416 KB
testcase_15 AC 58 ms
67,484 KB
testcase_16 AC 39 ms
59,536 KB
testcase_17 AC 45 ms
64,440 KB
testcase_18 AC 50 ms
65,584 KB
testcase_19 AC 51 ms
65,520 KB
testcase_20 AC 52 ms
66,520 KB
testcase_21 AC 52 ms
65,996 KB
testcase_22 AC 54 ms
66,776 KB
testcase_23 AC 52 ms
65,332 KB
testcase_24 AC 316 ms
129,412 KB
testcase_25 AC 680 ms
199,960 KB
testcase_26 AC 156 ms
87,852 KB
testcase_27 AC 287 ms
124,604 KB
testcase_28 AC 328 ms
131,828 KB
testcase_29 AC 213 ms
107,876 KB
testcase_30 AC 97 ms
83,948 KB
testcase_31 AC 692 ms
200,396 KB
testcase_32 AC 111 ms
84,504 KB
testcase_33 AC 524 ms
170,440 KB
testcase_34 AC 585 ms
176,688 KB
testcase_35 AC 578 ms
176,732 KB
testcase_36 AC 194 ms
107,768 KB
testcase_37 AC 326 ms
130,008 KB
testcase_38 AC 575 ms
177,084 KB
testcase_39 AC 348 ms
131,348 KB
testcase_40 AC 678 ms
199,664 KB
testcase_41 AC 651 ms
199,932 KB
testcase_42 AC 551 ms
176,684 KB
testcase_43 AC 317 ms
130,352 KB
testcase_44 AC 39 ms
53,884 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) for _ in range(N+1)]
dp1[0][0] = True

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

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

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

ans = 0

for i in range(N):
    ok = True
    
    for j in range(K+1):
        if dp1[i][j] and dp2[N-1-i][K-j]:
            ok = False
    
    if ok:
        ans += 1

print(ans)
0