뚜당탕탕
[프로그래머스 / Python] (스택/큐) 기능개발 본문
https://programmers.co.kr/learn/courses/30/lessons/42586
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
'💯 문제 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 / Python] (정렬) H-Index (0) | 2022.03.06 |
---|---|
[프로그래머스 / Python] 카펫 - 완전탐색 (0) | 2022.01.15 |
[프로그래머스 / Python] 문자열 내 p와 y의 개수 (0) | 2021.12.10 |
[프로그래머스 / Python] Skill Check Test Level.1 (0) | 2021.11.26 |
[프로그래머스 / Python] 문자열 내 마음대로 정렬하기 (0) | 2021.11.25 |
Comments