stat
변수를 통해 가능한 던전 개수를 더해준 다음able
리스트에 저장해두고
from itertools import permutations
def solution(k, dungeons):
answer = 0
able=[]
for d in permutations(dungeons,len(dungeons)):
stat=0
piro=k
for p,m in d:
if piro>=p:
piro-=m
stat+=1
else:
break
able.append(stat)
return max(able)