728x90
def solution(progresses, speeds):
answer = []
while (progresses!=[]):
ed=[] # complete
len_p=len(progresses)
for i in range(len_p):
progresses[i]+=speeds[i]
for i in range(len_p):
if progresses[i]>=100:
ed.append(progresses[i])
else:
break
if ed!=[]:
answer.append(len(ed))
for i in ed:
del progresses[0]
del speeds[0]
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL2 프린터, python3, 스택/큐 (0) | 2019.10.28 |
---|---|
[프로그래머스] LEVEL2 쇠막대기, python3, 스택/큐 (0) | 2019.10.28 |
[프로그래머스] LEVEL2 다리를 지나는 트럭,python3, 스택/큐 (0) | 2019.10.22 |
[프로그래머스] LEVEL1 x만큼 간격이 있는 n개의 숫자, python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 행렬의 덧셈,python3 (0) | 2019.10.19 |