結果

問題 No.1861 Required Number
ユーザー 👑 KazunKazun
提出日時 2022-03-04 21:42:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 81,492 KB
実行使用メモリ 76,248 KB
最終ジャッジ日時 2024-07-18 22:41:01
合計ジャッジ時間 5,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,144 KB
testcase_01 AC 37 ms
58,008 KB
testcase_02 AC 34 ms
52,700 KB
testcase_03 AC 139 ms
69,136 KB
testcase_04 WA -
testcase_05 AC 34 ms
51,988 KB
testcase_06 AC 32 ms
53,236 KB
testcase_07 AC 39 ms
58,052 KB
testcase_08 AC 42 ms
60,828 KB
testcase_09 AC 38 ms
57,772 KB
testcase_10 AC 41 ms
59,188 KB
testcase_11 WA -
testcase_12 AC 38 ms
58,140 KB
testcase_13 AC 41 ms
59,528 KB
testcase_14 WA -
testcase_15 AC 36 ms
58,392 KB
testcase_16 AC 35 ms
58,724 KB
testcase_17 AC 39 ms
58,524 KB
testcase_18 AC 37 ms
59,480 KB
testcase_19 AC 38 ms
59,216 KB
testcase_20 AC 39 ms
60,268 KB
testcase_21 AC 37 ms
59,892 KB
testcase_22 AC 40 ms
60,536 KB
testcase_23 AC 38 ms
58,736 KB
testcase_24 AC 67 ms
67,220 KB
testcase_25 AC 99 ms
68,408 KB
testcase_26 AC 58 ms
65,212 KB
testcase_27 AC 67 ms
68,248 KB
testcase_28 AC 67 ms
67,256 KB
testcase_29 AC 73 ms
75,860 KB
testcase_30 AC 52 ms
69,228 KB
testcase_31 AC 102 ms
67,504 KB
testcase_32 AC 52 ms
68,144 KB
testcase_33 AC 81 ms
68,752 KB
testcase_34 AC 89 ms
67,836 KB
testcase_35 AC 94 ms
69,712 KB
testcase_36 AC 64 ms
67,552 KB
testcase_37 AC 70 ms
68,536 KB
testcase_38 AC 119 ms
76,248 KB
testcase_39 AC 70 ms
68,012 KB
testcase_40 AC 99 ms
69,140 KB
testcase_41 AC 131 ms
76,044 KB
testcase_42 AC 84 ms
68,644 KB
testcase_43 AC 66 ms
67,332 KB
testcase_44 AC 33 ms
52,348 KB
04_evil_1.txt RE -
04_evil_2.txt RE -
04_evil_3.txt RE -
04_evil_4.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(A):
    A=["*"]+A
    DP=[-1]*(K+1); DP[0]=0

    for i,a in enumerate(A[1:],1):
        for y in range(K,a-1,-1):
            if DP[y-a]>=0 and DP[y]==-1:
                DP[y]=i
    if DP[K]==-1:
        return None

    X=[]; x=K
    while x>0:
        X.append(DP[x])
        x-=A[DP[x]]
    return X
#==================================================
N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()

assert (N<=10**4) and (K<=10**3)

P=f(A)
if P==None:
    exit(print(-1))

Q=[N-k+1 for k in f(A[::-1])]

print(len(set(P)&set(Q)))
0