結果

問題 No.1457 ツブ消ししとるなHard
ユーザー あかりきあかりき
提出日時 2021-04-13 17:57:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 113,616 KB
最終ジャッジ日時 2024-06-29 22:57:32
合計ジャッジ時間 2,726 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,376 KB
testcase_01 AC 44 ms
54,316 KB
testcase_02 AC 41 ms
53,960 KB
testcase_03 AC 41 ms
54,436 KB
testcase_04 AC 154 ms
90,968 KB
testcase_05 AC 176 ms
105,592 KB
testcase_06 AC 233 ms
113,616 KB
testcase_07 AC 41 ms
54,060 KB
testcase_08 AC 41 ms
55,188 KB
testcase_09 AC 63 ms
72,152 KB
testcase_10 AC 62 ms
71,156 KB
testcase_11 AC 50 ms
63,592 KB
testcase_12 AC 91 ms
82,856 KB
testcase_13 AC 65 ms
69,176 KB
testcase_14 AC 52 ms
63,552 KB
testcase_15 AC 79 ms
78,812 KB
testcase_16 AC 113 ms
84,708 KB
testcase_17 AC 41 ms
54,252 KB
testcase_18 AC 41 ms
54,688 KB
testcase_19 AC 113 ms
90,592 KB
testcase_20 AC 41 ms
55,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
n,m,x,y,z=map(int,input().split())
a=list(map(int,input().split()))

L=[]
L2=[]
for i in range(n):
  if a[i]>=x:
    L.append(a[i])
  elif a[i]>y:
    L2.append(a[i])

if len(L)>m:
  print('Handicapped')
  exit()

n=len(L2)
if len(L2)!=0:
  M=max(L2)
else:
  M=0
m-=len(L)
L3=[[[0]*(M*m+1) for i in range(m+1)] for j in range(n+1)]

for i3 in range(n+1):
  for i2 in range(m+1):
    for i1 in range(M*m+1):
      if i1==0 and i2==0 and i3==0:
        L3[i3][i2][i1]=1
      elif i3>0 and i1<L2[i3-1]:
        L3[i3][i2][i1]=L3[i3-1][i2][i1]
      elif i3>0 and i2>0 and i1>=L2[i3-1]:
        L3[i3][i2][i1]=L3[i3-1][i2][i1]+L3[i3-1][i2-1][i1-L2[i3-1]]
      else:
        L3[i3][i2][i1]=0
ct=0
for i2 in range(m+1):
  for i1 in range(1,M*m+1):
    if (i2+len(L))*z==i1+sum(L):
      ct+=L3[n][i2][i1]
print(ct)
0