結果

問題 No.1457 ツブ消ししとるなHard
ユーザー 👑 rin204rin204
提出日時 2022-01-18 04:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-05-02 19:16:51
合計ジャッジ時間 1,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 41 ms
59,008 KB
testcase_05 AC 42 ms
59,392 KB
testcase_06 AC 67 ms
68,224 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 40 ms
58,880 KB
testcase_10 AC 40 ms
59,008 KB
testcase_11 AC 35 ms
51,840 KB
testcase_12 AC 51 ms
62,336 KB
testcase_13 AC 47 ms
60,160 KB
testcase_14 AC 45 ms
60,544 KB
testcase_15 AC 45 ms
60,160 KB
testcase_16 AC 35 ms
52,224 KB
testcase_17 AC 35 ms
51,712 KB
testcase_18 AC 34 ms
51,968 KB
testcase_19 AC 43 ms
60,800 KB
testcase_20 AC 34 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, x, y, z = map(int, input().split())
A = list(map(int, input().split()))
B = []
tot = 0
cnt = 0
for a in A:
    if a <= y:
        pass
    elif a >= x:
        tot += a - z
        cnt += 1
    else:
        B.append(a - z)
if cnt > m:
    print("Handicapped")
    exit()
n = len(B)
dp = {}
for i in range(n + 1):
    dp[i] = {}

dp[0][tot] = 1
for i, b in enumerate(B, 1):
    for j in range(i - 1, -1, -1):
        for k, v in dp[j].items():
            dp[j + 1][k + b] = dp[j + 1].get(k + b, 0) + v

ans = 0
if cnt == 0:
    ans -= 1
for i in range(min(n, m - cnt) + 1):
    ans += dp[i].get(0, 0)
print(ans)
0