結果

問題 No.1457 ツブ消ししとるなHard
ユーザー rlangevinrlangevin
提出日時 2023-01-18 23:52:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 125,056 KB
最終ジャッジ日時 2024-06-11 23:27:27
合計ジャッジ時間 2,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
79,744 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 59 ms
73,600 KB
testcase_03 AC 58 ms
71,040 KB
testcase_04 AC 125 ms
124,032 KB
testcase_05 AC 121 ms
121,912 KB
testcase_06 AC 127 ms
124,160 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 92 ms
98,048 KB
testcase_10 AC 92 ms
97,752 KB
testcase_11 AC 67 ms
79,360 KB
testcase_12 AC 139 ms
125,056 KB
testcase_13 AC 89 ms
98,432 KB
testcase_14 AC 89 ms
98,432 KB
testcase_15 AC 127 ms
111,232 KB
testcase_16 AC 124 ms
122,880 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 46 ms
62,592 KB
testcase_19 AC 130 ms
124,160 KB
testcase_20 AC 47 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x, a):
    return a + 2500 * x

N, M, X, Y, Z = map(int, input().split())
A = list(map(int, input().split()))
cnt = 0
for a in A:
    if a >= X:
        cnt += 1
if cnt > M:
    print("Handicapped")
    exit()

pre = [0] * (55 * 2500)
pre[f(0, 0)] = 1
for i in range(N):
    dp = [0] * (55 * 2500)
    for j in range(i + 1):
        for a in range(2501):
            if A[i] > Y:
                dp[f(j + 1, a + A[i])] += pre[f(j, a)]
            if A[i] < X:
                dp[f(j, a)] += pre[f(j, a)]
    dp, pre = pre, dp
ans = 0
for i in range(1, M + 1):
    ans += pre[f(i, i * Z)]
print(ans)
0