結果

問題 No.1457 ツブ消ししとるなHard
ユーザー first_vilfirst_vil
提出日時 2021-11-12 10:53:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 99,204 KB
最終ジャッジ日時 2024-05-03 16:55:29
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
77,184 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 85 ms
76,672 KB
testcase_03 AC 71 ms
72,192 KB
testcase_04 AC 312 ms
97,656 KB
testcase_05 AC 299 ms
96,376 KB
testcase_06 AC 327 ms
98,136 KB
testcase_07 AC 37 ms
53,328 KB
testcase_08 AC 35 ms
54,292 KB
testcase_09 AC 126 ms
80,712 KB
testcase_10 AC 141 ms
81,872 KB
testcase_11 AC 80 ms
77,192 KB
testcase_12 AC 291 ms
93,496 KB
testcase_13 AC 135 ms
80,180 KB
testcase_14 AC 86 ms
76,576 KB
testcase_15 AC 209 ms
84,116 KB
testcase_16 AC 278 ms
99,204 KB
testcase_17 AC 38 ms
52,196 KB
testcase_18 AC 49 ms
62,852 KB
testcase_19 AC 294 ms
95,996 KB
testcase_20 AC 47 ms
63,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

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

y = bisect_right(A,Y)
x = bisect_left(A,X)
if N-x > M:
    print("Handicapped")
    exit(0)

s = 2500
dp = [[0]*(s*2+100) for i in range(M+1)]
dp[0][0] = 1
for a in A:
    nxt = [[0]*(s*2+100) for i in range(M+1)]
    for i in range(M+1):
        for j in range(-s,s+1):
            if i+1 <= M and Y < a and -s <= j+a-Z <= s:
                nxt[i+1][j+a-Z] += dp[i][j]
            if a < X:
                nxt[i][j] += dp[i][j]
    dp = nxt

ans = 0
for i in range(1,M+1):
    ans += dp[i][0]
print(ans)
0