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 | 29 | 30 | 31 |
Tags
- Deep learning
- machine learning
- tensorflow
- 자연어처리
- 홍콩과기대김성훈교수
- 강의자료
- 스택
- 파이토치
- 백준
- DynamicProgramming
- Softmax
- 머신러닝 기초
- DP
- pytorch
- 딥러닝
- 알고리즘
- 파이썬
- BAEKJOON
- Cross entropy
- AI
- 머신러닝
- rnn
- MSE
- loss
- classifier
- 정렬
- Natural Language Processing with PyTorch
- Python
- Hypothesis
- 강의정리
Archives
- Today
- Total
개발자의시작
[기능개발][프로그래머스][programmers][큐/스택][파이썬] 본문
문제링크
https://programmers.co.kr/learn/courses/30/lessons/42586
문제
소스코드
#Python
1
2
3
4
5
6
7
8
9
10
|
def solution(progresses, speeds):
queue=[]
for p, s in zip(progresses, speeds):
if len(queue)==0 or queue[-1][0]< -((p-100)//s):
queue.append([ -((p-100)//s) ,1])
else:
queue[-1][1]+=1
return [ q[1] for q in queue]
|
[tiw]
'알고리즘(Algorithm) > 프로그래머스(programmers)' 카테고리의 다른 글
[프린터][프로그래머스][programmers][큐/스택][파이썬] (0) | 2021.08.04 |
---|
Comments