結果

問題 No.1457 ツブ消ししとるなHard
ユーザー 👑 rin204rin204
提出日時 2022-01-18 04:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 68,608 KB
最終ジャッジ日時 2024-11-23 13:15:17
合計ジャッジ時間 1,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 41 ms
59,392 KB
testcase_05 AC 41 ms
59,392 KB
testcase_06 AC 69 ms
68,608 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 45 ms
58,752 KB
testcase_10 AC 41 ms
58,752 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 AC 50 ms
62,336 KB
testcase_13 AC 46 ms
60,032 KB
testcase_14 AC 45 ms
60,160 KB
testcase_15 AC 45 ms
60,032 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 36 ms
52,096 KB
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 44 ms
60,672 KB
testcase_20 AC 36 ms
51,840 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