Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[just-stopyoon] programmers_기능개발_Python #16

Merged
merged 1 commit into from
Jan 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions programmers/스택 큐.기능개발
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
def solution(progresses, speeds):
answer = [] # 최종 정답
day = 1 # 작업 일자
cnt = 0 # 배포하는 기능의 개수

while (len(progresses) != 0) : # 남은 기능이 없을 때까지
if progresses[0] + speeds[0] * day >= 100 : # 기능이 완성되면
progresses.pop(0) # 해당 기능 배포
speeds.pop(0) # 해당 개발속도 없애기
cnt += 1 # 배포하는 기능의 개수 증가
else : # 아직 기능이 완성되지 않았다면
if cnt > 0 : # 지금까지 배포할 수 있는 기능이 있다면
answer.append(cnt) # 해당 배포에 배포되는 기능 수 추가
cnt = 0 # 개수 초기화
day += 1 # 일자 주가
if cnt > 0 : # 모든 기능 배포가 끝났을 때 마지막으로 배포해야하는 기능들이 있다면
answer.append(cnt) # 해당 배포에 배포되는 기능 수 추가
return answer