結果

問題 No.1861 Required Number
ユーザー lloyzlloyz
提出日時 2023-07-31 01:26:35
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 899 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 901,688 KB
最終ジャッジ日時 2024-10-09 20:10:42
合計ジャッジ時間 28,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 43 ms
66,448 KB
testcase_02 AC 37 ms
53,264 KB
testcase_03 AC 684 ms
234,764 KB
testcase_04 AC 734 ms
234,624 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 48 ms
60,160 KB
testcase_08 AC 59 ms
64,640 KB
testcase_09 AC 46 ms
59,136 KB
testcase_10 AC 55 ms
62,976 KB
testcase_11 AC 56 ms
63,488 KB
testcase_12 AC 51 ms
61,184 KB
testcase_13 AC 56 ms
62,848 KB
testcase_14 AC 57 ms
63,744 KB
testcase_15 AC 58 ms
63,744 KB
testcase_16 AC 46 ms
58,880 KB
testcase_17 AC 56 ms
62,720 KB
testcase_18 AC 59 ms
63,488 KB
testcase_19 AC 61 ms
64,768 KB
testcase_20 AC 59 ms
64,128 KB
testcase_21 AC 58 ms
63,104 KB
testcase_22 AC 59 ms
63,488 KB
testcase_23 AC 60 ms
63,872 KB
testcase_24 AC 318 ms
128,896 KB
testcase_25 AC 675 ms
213,120 KB
testcase_26 AC 188 ms
99,072 KB
testcase_27 AC 294 ms
123,452 KB
testcase_28 AC 323 ms
126,336 KB
testcase_29 AC 216 ms
102,144 KB
testcase_30 AC 112 ms
80,640 KB
testcase_31 AC 680 ms
214,400 KB
testcase_32 AC 119 ms
82,432 KB
testcase_33 AC 489 ms
168,692 KB
testcase_34 AC 578 ms
188,196 KB
testcase_35 AC 572 ms
189,952 KB
testcase_36 AC 212 ms
101,760 KB
testcase_37 AC 304 ms
122,752 KB
testcase_38 AC 580 ms
191,744 KB
testcase_39 AC 356 ms
139,392 KB
testcase_40 AC 670 ms
213,792 KB
testcase_41 AC 676 ms
206,336 KB
testcase_42 AC 526 ms
168,960 KB
testcase_43 AC 317 ms
123,392 KB
testcase_44 AC 38 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 for _ in range(k + 1)] for _ in range(n + 1)]
DPr = [[False for _ in range(k + 1)] for _ in range(n + 1)]
DPl[0][0] = True
DPr[n][0] = True
for i in range(n):
    a = A[i]
    for j in range(k + 1):
        if DPl[i][j] > 0:
            DPl[i + 1][j] |= DPl[i][j]
            if j + a <= k:
                DPl[i + 1][j + a] |= DPl[i][j]
for i in range(n - 1, -1, -1):
    a = A[i]
    for j in range(k + 1):
        if DPr[i + 1][j] > 0:
            DPr[i][j] |= DPr[i + 1][j]
            if j + a <= k:
                DPr[i][j + a] |= DPr[i + 1][j]
ans = 0
if DPl[n][k]:
    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
else:
    ans = -1
print(ans)
0