結果

問題 No.1457 ツブ消ししとるなHard
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-27 08:43:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 640 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 148,352 KB
最終ジャッジ日時 2024-11-29 08:15:22
合計ジャッジ時間 49,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 42 ms
57,216 KB
testcase_02 TLE -
testcase_03 AC 42 ms
57,216 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 42 ms
56,832 KB
testcase_08 AC 42 ms
112,896 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 42 ms
57,216 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 42 ms
148,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X,Y,Z=map(int,input().split())
cnt=0
A=list(map(int,input().split()))
for i in range(N):
    if A[i]>=X:
        cnt+=1
if cnt>M:
    print("Handicapped")
else:
    dp=[[[0]*(M*Z+1) for j in range(M+1)]for i in range(N+1)]
    dp[0][0][0]=1
    for i in range(N):
        if A[i]<X:
            for j in range(M):
                for k in range(M*Z+1):
                    dp[i+1][j][k]=dp[i][j][k]
        if A[i]>Y:
            for j in range(M):
                k=0
                while k+A[i]<=M*Z:
                    dp[i+1][j+1][k+A[i]]+=dp[i][j][k]
    ans=0
    for i in range(1,M+1):
        ans+=dp[N][i][i*Z]
    print(ans)
0