結果

問題 No.1457 ツブ消ししとるなHard
ユーザー convexineqconvexineq
提出日時 2021-05-05 21:09:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-09-13 14:03:54
合計ジャッジ時間 2,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 WA -
testcase_03 AC 44 ms
53,760 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 44 ms
53,504 KB
testcase_08 AC 43 ms
53,120 KB
testcase_09 AC 50 ms
61,440 KB
testcase_10 AC 51 ms
61,184 KB
testcase_11 AC 45 ms
53,888 KB
testcase_12 AC 66 ms
68,608 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 53 ms
63,488 KB
testcase_16 AC 42 ms
53,632 KB
testcase_17 AC 49 ms
61,440 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x,y,z = map(int,input().split())
*a, = map(int,input().split())
from collections import defaultdict
dp = defaultdict(int)
dp[(0,0)] = 1
V = C = 0
for ai in a:
    if ai >= x:
        V += ai-z
        C += 1
    elif ai > y:
        ndp = dp.copy()
        for (v,c),r in dp.items():
            ndp[(v+ai-z,c+1)] += r
        dp = ndp
print(sum(dp[(-V,i)] for i in range(m+1-C)) if C <= m else "Handicapped")
0