뚜당탕탕

[프로그래머스 / Python] (스택/큐) 기능개발 본문

💯 문제 풀이/프로그래머스

[프로그래머스 / Python] (스택/큐) 기능개발

뚜띠언니 2022. 3. 8. 21:42

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

 

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

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

programmers.co.kr

 

def solution(progresses, speeds):
    answer = []
    start = 0
    for i in range(start, len(progresses)) :
        while (progresses[i] < 100) :
            for j in range(start, len(progresses)) :
                progresses[j] += speeds[j]
        baepo = 0
        while (start < len(progresses)) and (progresses[start] >= 100) :
            baepo += 1
            start += 1
        if (0 < baepo) :
            answer.append(baepo)
    return answer
Comments