結果

問題 No.1861 Required Number
ユーザー chineristACchineristAC
提出日時 2022-03-04 22:31:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 808 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 849,080 KB
最終ジャッジ日時 2024-07-18 23:06:15
合計ジャッジ時間 5,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,472 KB
testcase_01 AC 43 ms
57,436 KB
testcase_02 AC 42 ms
55,956 KB
testcase_03 AC 652 ms
80,004 KB
testcase_04 AC 669 ms
79,932 KB
testcase_05 AC 44 ms
56,464 KB
testcase_06 AC 44 ms
56,136 KB
testcase_07 AC 50 ms
62,796 KB
testcase_08 AC 72 ms
76,568 KB
testcase_09 AC 45 ms
56,372 KB
testcase_10 AC 64 ms
76,292 KB
testcase_11 AC 63 ms
76,428 KB
testcase_12 AC 45 ms
56,920 KB
testcase_13 AC 75 ms
76,520 KB
testcase_14 AC 51 ms
65,600 KB
testcase_15 AC 57 ms
73,024 KB
testcase_16 AC 44 ms
56,016 KB
testcase_17 AC 54 ms
69,896 KB
testcase_18 AC 72 ms
76,656 KB
testcase_19 AC 147 ms
76,860 KB
testcase_20 AC 98 ms
76,644 KB
testcase_21 AC 57 ms
73,276 KB
testcase_22 AC 111 ms
76,500 KB
testcase_23 AC 54 ms
66,608 KB
testcase_24 MLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
04_evil_1.txt -- -
04_evil_2.txt -- -
04_evil_3.txt -- -
04_evil_4.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,K = mi()
A = li()

assert N <= 10**4
assert K <= 10**3

dp = [0 for i in range(N+1)]
dp[0] = 1
for i in range(N):
    dp[i+1] = dp[i]|(dp[i]<<A[i])

dp_back = [0 for i in range(N+1)]
dp_back[N] = 1
for i in range(N)[::-1]:
    dp_back[i] = dp_back[i+1]|(dp_back[i+1]<<A[i])

if dp[-1]>>K & 1 == 0:
    exit(print(-1))

need = 0
for i in range(N):
    flag = True
    for k in range(K+1):
        if dp[i]>>k & 1:
            if dp_back[i+1]>>(K-k) & 1:
                flag = False
    if flag:
        need += 1


print(need)
0