Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Deeplearning
- OpenCV
- Threshold
- attention
- flame
- 스택
- 논문 구현
- 큐
- 알고리즘
- center loss
- reconstruction
- 자료구조
- cv2
- Python
- 3D
- Object Tracking
- 파이썬
- level2
- 프로그래머스
- Object Detection
- deep learning
- transformer
- re-identification
- numpy
- Computer Vision
- Knowledge Distillation
- NLP
- point cloud
- 딥러닝
- 임계처리
Archives
- Today
- Total
목록기능개발 (1)
공돌이 공룡의 서재
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/b7AIJ7/btqH7afxLAv/AKsWcmGHmMGKEVGH4V5QHk/img.png)
from math import ceil def solution(progresses, speeds): answer = [] #1 period = [ceil((100-progresses[i])/speeds[i]) for i in range(len(progresses)-1, -1, -1)] #2 release = [] elapse = period.pop() release.append(elapse) #3 while len(period) > 0: work = period.pop() if elapse < work: answer.append(len(release)) release = [] period.append(work) elapse = work else: release.append(work) answer.appe..
코딩/프로그래머스
2020. 9. 7. 11:36