개발자의시작

[기능개발][프로그래머스][programmers][큐/스택][파이썬] 본문

알고리즘(Algorithm)/프로그래머스(programmers)

[기능개발][프로그래머스][programmers][큐/스택][파이썬]

LNLP 2021. 8. 4. 02:47

문제링크

https://programmers.co.kr/learn/courses/30/lessons/42586

 

코딩테스트 연습 - 기능개발

프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는

programmers.co.kr

 

문제

 

소스코드

#Python

 

1
2
3
4
5
6
7
8
9
10
def solution(progresses, speeds):
    queue=[]
 
    for p, s in zip(progresses, speeds):
        if len(queue)==0 or queue[-1][0]< -((p-100)//s):
            queue.append([ -((p-100)//s) ,1])
        else:
            queue[-1][1]+=1
 
    return [ q[1for q in queue]
 

 

[tiw]

Comments