結果

問題 No.1457 ツブ消ししとるなHard
ユーザー ああいいああいい
提出日時 2022-06-03 07:51:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 95,264 KB
最終ジャッジ日時 2024-09-21 02:15:46
合計ジャッジ時間 2,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,768 KB
testcase_01 AC 38 ms
52,324 KB
testcase_02 AC 49 ms
62,924 KB
testcase_03 AC 39 ms
52,516 KB
testcase_04 AC 188 ms
92,384 KB
testcase_05 AC 178 ms
90,728 KB
testcase_06 AC 194 ms
95,264 KB
testcase_07 AC 38 ms
53,320 KB
testcase_08 AC 38 ms
52,816 KB
testcase_09 AC 61 ms
70,956 KB
testcase_10 AC 61 ms
70,060 KB
testcase_11 AC 53 ms
65,332 KB
testcase_12 AC 105 ms
79,620 KB
testcase_13 AC 81 ms
77,132 KB
testcase_14 AC 53 ms
65,404 KB
testcase_15 AC 82 ms
76,788 KB
testcase_16 AC 81 ms
78,516 KB
testcase_17 AC 38 ms
53,976 KB
testcase_18 AC 45 ms
61,076 KB
testcase_19 AC 176 ms
90,104 KB
testcase_20 AC 44 ms
59,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X,Y,Z = map(int,input().split())
A = list(map(int,input().split()))

l = []
count = 0
s = 0
for a in A:
    if a >= X:
        count += 1
        s += a - Z
    elif a > Y:
        l.append(a - Z)
n = len(l)
import sys
if count > M:
    print('Handicapped')
    exit()
if count == M:
    if s == 0:
        print(1)
    else:
        print(0)
    exit()
    
C = 2500 + 10
base = 2500 + 5
dp = [[0] * (2 * C) for _ in range(M - count + 1)]
dp[0][base + s] = 1
for i in range(n):
    a = l[i]
    nx = [[0] * (2 * C) for _ in range(M - count + 1)]
    for j in range(M - count):
        u = dp[j]
        v = nx[j + 1]
        for k in range(2 * C):
            if 0 <= k + a < 2 * C:
                v[k + a] += u[k]
    for j in range(1 + M - count):
        u = dp[j]
        v = nx[j]
        for k in range(2 * C):
            v[k] += u[k]
    dp = nx
ans = 0
for j in range(M - count + 1):
    ans += dp[j][base]
if count == 0:
    ans -= 1
print(ans)
0