結果
問題 | No.1457 ツブ消ししとるなHard |
ユーザー | shiomusubi496 |
提出日時 | 2021-03-20 16:55:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 614 bytes |
コンパイル時間 | 116 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 68,768 KB |
最終ジャッジ日時 | 2024-05-06 21:53:35 |
合計ジャッジ時間 | 3,931 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
18,848 KB |
testcase_01 | AC | 35 ms
10,880 KB |
testcase_02 | AC | 50 ms
11,136 KB |
testcase_03 | AC | 31 ms
10,880 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
N,M,X,Y,Z=map(int,input().split()) A=list(map(int,input().split())) B=[] s=0 c=0 for i in A: if i>=X: s+=i c+=1 elif i>Y: B+=[i] if c>M: print("Handicapped") else: dp=[[[0]*2501 for j in range(N+1)]for i in range(len(B)+1)] dp[0][c][s]=1 for i in range(len(B)): for j in range(N+1): for k in range(2501): dp[i+1][j][k]=dp[i][j][k] for j in range(N): for k in range(B[i],2501): dp[i+1][j+1][k]+=dp[i][j][k-B[i]] ans=0 for i in range(1,M+1): ans+=dp[len(B)][i][i*Z] print(ans)