일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 위클리 챌린지
- BFS
- backjoon
- python
- divmod
- 프로그래머스
- heapq
- Re
- 그리디
- Combinations
- 정규식
- Zip
- 다익스트라
- 동적 계획법
- 백준
- java
- 자바
- programmers
- 이분탐색
- 카카오
- DateTime
- 추석맞이 코딩챌린지
- 재귀함수
- 파이썬
- Set
- 정렬
- lambda
- KAKAO BLIND RECRUITMENT
- 수학
- dfs
Archives
- Today
- Total
상상쓰
[프로그래머스] 기능개발 본문
https://programmers.co.kr/learn/courses/30/lessons/42586
문제에서 하라는 대로 했다.
import math
def solution(progresses, speeds):
answer = []
jobs = []
N = len(progresses)
M = math.ceil((100 - progresses[0]) / speeds[0])
e = 0
for i in range(1, N):
m = math.ceil((100 - progresses[i]) / speeds[i])
if M < m:
M = m
answer.append(e + 1)
e = 0
else:
e += 1
if i == N - 1:
answer.append(e + 1)
return answer
print(solution([93, 30, 55], [1, 30, 5])) # [2, 1]
'Coding Test' 카테고리의 다른 글
[프로그래머스] [3차] 자동완성 (0) | 2021.07.02 |
---|---|
[프로그래머스] 징검다리 (0) | 2021.07.02 |
[백준] 게임을 만든 동준이 (0) | 2021.07.01 |
[백준] 강의실 배정 (0) | 2021.07.01 |
[백준] 2+1 세일 (0) | 2021.06.30 |
Comments