본문 바로가기
Online-Judge/Programmers

[Programmers] Python 기능개발

by nyangzzi 2022. 6. 10.
반응형

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

 

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

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

programmers.co.kr

 


 

import math

def solution(progresses, speeds):
    
    work = [math.ceil((100 - progresses[i]) / speeds[i]) for i in range(len(speeds))]
    
    print(work)
    
    answer = []
    
    now = work[0]
    cnt = 0
    
    for i in range(len(work)):
        cnt = cnt + 1  
        if i == len(work)-1:
            answer.append(cnt)
            cnt = 0
        elif now < work[i+1]:
            answer.append(cnt)
            cnt = 0
            now = work[i+1]
            
    return answer
반응형

댓글