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

수경·2022년 1월 28일
0

problem solving

목록 보기
39/174

코드

import math

def solution(progresses, speeds):
    answer = []
    p = []
    tmp = []
    for i in progresses:
        p.append(math.ceil((100 - i) / speeds.pop(0)))
    tmp.append(p.pop(0))
    for i in p:
        if i <= tmp[0]:
            tmp.append(i)
        else:
            answer.append(len(tmp))
            tmp = []
            tmp.append(i)     
    answer.append(len(tmp))
    return answer
profile
어쩌다보니 tmi뿐인 블로그😎

0개의 댓글