結果

問題 No.1457 ツブ消ししとるなHard
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-01 09:32:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-05-09 20:10:30
合計ジャッジ時間 2,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,056 KB
testcase_01 AC 50 ms
59,536 KB
testcase_02 AC 48 ms
59,392 KB
testcase_03 AC 41 ms
58,368 KB
testcase_04 AC 47 ms
63,616 KB
testcase_05 AC 46 ms
62,848 KB
testcase_06 AC 53 ms
66,176 KB
testcase_07 AC 48 ms
63,872 KB
testcase_08 AC 51 ms
62,208 KB
testcase_09 AC 52 ms
64,000 KB
testcase_10 AC 50 ms
62,976 KB
testcase_11 AC 51 ms
60,928 KB
testcase_12 AC 58 ms
66,560 KB
testcase_13 AC 52 ms
62,464 KB
testcase_14 WA -
testcase_15 AC 51 ms
63,488 KB
testcase_16 AC 46 ms
61,312 KB
testcase_17 AC 50 ms
62,848 KB
testcase_18 AC 41 ms
58,240 KB
testcase_19 AC 50 ms
65,064 KB
testcase_20 AC 42 ms
58,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x,y,z = map(int,input().split())
A = list(map(int,input().split()))

dp = [0]*(10010)
dp[0] = 1
need = 0
for a in A:
    if a <= y:
        continue

    ndp = [0]*(10010)
    if a >= x:
        need += 1
        for i in range(-5000,5000):
            if dp[i]:
                ndp[i+a-z] += dp[i]
    else:
        for i in range(-5000,5000):
            if dp[i]:
                ndp[i] += dp[i]
                ndp[i+a-z] += dp[i]
    dp = ndp
ans = dp[0]
if need > m:
    print("Handicapped")
    exit()
if need == 0:
    ans -= 1
print(ans)
0