結果

問題 No.1457 ツブ消ししとるなHard
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-01 09:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,320 KB
最終ジャッジ日時 2024-05-09 20:14:14
合計ジャッジ時間 2,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,184 KB
testcase_01 AC 44 ms
59,392 KB
testcase_02 AC 42 ms
59,392 KB
testcase_03 AC 41 ms
58,624 KB
testcase_04 AC 99 ms
82,432 KB
testcase_05 AC 92 ms
81,152 KB
testcase_06 AC 107 ms
83,548 KB
testcase_07 AC 98 ms
84,064 KB
testcase_08 AC 63 ms
76,868 KB
testcase_09 AC 59 ms
74,240 KB
testcase_10 AC 59 ms
74,292 KB
testcase_11 AC 46 ms
62,464 KB
testcase_12 AC 109 ms
83,840 KB
testcase_13 AC 58 ms
72,832 KB
testcase_14 AC 57 ms
73,088 KB
testcase_15 AC 75 ms
78,464 KB
testcase_16 AC 58 ms
73,600 KB
testcase_17 AC 59 ms
74,240 KB
testcase_18 AC 40 ms
57,984 KB
testcase_19 AC 107 ms
84,320 KB
testcase_20 AC 41 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0]*3005 for i in range(n+1)]
dp[0][0] = 1
need = 0
for a in A:
    if a <= y:
        continue
    ndp = [[0]*3005 for i in range(n+1)]
    if a >= x:
        need += 1
        for i in range(n):
            for j in range(3000):
                if dp[i][j]:
                    ndp[i+1][j+a] += dp[i][j]
    else:
        for i in range(n):
            for j in range(3000):
                if dp[i][j]:
                    ndp[i+1][j+a] += dp[i][j]
                    ndp[i][j] += dp[i][j]

    dp = ndp

if need > m:
    print("Handicapped")
    exit()
ans = 0
for i in range(1,m+1):
    ans += dp[i][i*z]

print(ans)
0