문제
알고리즘
- 반복문을 통해 모든 작업이 완료될 때까지 작업을 한다.
- zip을 통해 현재 작업 진도를 작업 속도와 더한다.
- 현재 작업 진도가 100보다 크거나 같다면 현재 모든 작업 진도가 100보다 크거나 같은 것을 리스트에서 빼준다.
- 이때 빠진 작업의 개수를 answer에 추가한다.
- 모든 작업이 완료했다면 answer를 출력한다.
코드
def solution(progresses, speeds):
answer = []
while progresses:
progresses = [x + y for x, y in zip(progresses, speeds)]
cnt = 0
while progresses[0] >= 100:
del progresses[0]
del speeds[0]
cnt += 1
if not progresses:
break
if cnt:
answer.append(cnt)
return answer
github
'CodingTest > Programers' 카테고리의 다른 글
[programers] 프로그래머스(파이썬) : 크레인 인형뽑기 게임 (0) | 2022.08.29 |
---|---|
[programers] 프로그래머스(파이썬) : 가장 먼 노드 (0) | 2022.08.19 |
[programers] 프로그래머스(파이썬) : 숫자 문자열과 영단어 (0) | 2022.05.10 |
[programers] 프로그래머스(파이썬) : 124 나라의 숫자 (0) | 2022.04.29 |
[programers] 프로그래머스(파이썬) : 오픈채팅방 (0) | 2022.04.27 |