結果

問題 No.1457 ツブ消ししとるなHard
ユーザー nasubi24nasubi24
提出日時 2021-03-31 21:34:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 63,764 KB
最終ジャッジ日時 2024-05-09 05:49:31
合計ジャッジ時間 2,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,240 KB
testcase_01 AC 36 ms
52,876 KB
testcase_02 AC 41 ms
59,492 KB
testcase_03 AC 36 ms
53,408 KB
testcase_04 AC 70 ms
62,840 KB
testcase_05 AC 72 ms
63,280 KB
testcase_06 AC 73 ms
63,132 KB
testcase_07 AC 37 ms
53,368 KB
testcase_08 AC 41 ms
58,728 KB
testcase_09 AC 44 ms
59,564 KB
testcase_10 AC 45 ms
60,316 KB
testcase_11 AC 41 ms
59,572 KB
testcase_12 AC 56 ms
61,732 KB
testcase_13 AC 45 ms
59,848 KB
testcase_14 AC 45 ms
61,484 KB
testcase_15 AC 49 ms
61,328 KB
testcase_16 AC 41 ms
59,680 KB
testcase_17 AC 42 ms
59,852 KB
testcase_18 AC 39 ms
58,536 KB
testcase_19 AC 70 ms
63,764 KB
testcase_20 AC 39 ms
58,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x,y,z=map(int,input().split())
a=list(map(int,input().split()))
cnt1=0
cnt2=0
b=[]
for i in range(n):
    if a[i]>=x:
        cnt1+=a[i]
        cnt2+=1
    elif a[i]>y:
        b.append(a[i])
dp=[[0]*(5000) for _ in range(len(b)+1)]
dp[0][0]=1
for i in range(len(b)):
    c=b[i]
    for j in range(i,-1,-1):
        for k in range(5000):
            if dp[j][k]!=0:
                dp[j+1][k+c]+=dp[j][k]
if cnt2>m:
    print("Handicapped")
else:
    ans=0
    for i in range(min(len(b)+1,m-cnt2+1)):
        if z*(cnt2+i)-cnt1>=0 and cnt2+i>0:
            ans+=dp[i][z*(cnt2+i)-cnt1]
    print(ans)
0