https://programmers.co.kr/learn/courses/30/lessons/42586?language=python3
for 문에 list를 지정하고 해당 list에서 pop()이 일어나면 반복문이 어떤식으로 흘러가는지 알게되었음.
아래는 풀이한 코드 다른사람들 코드는 훨씬 간결..
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
32
33
34
|
def solution(progresses, speeds):
answer = []
pro = progresses
sp = speeds
# 100까지 몇일 필요한지 구하기
def com_days_cal(pro, sp) :
com = float((100-pro[0]) / sp[0])
if (com - int(com)) > 0 :
return int(com)+1
else :
return int(com)
#본격적인 함수
for i in range(0,len(pro)) :
com_days = com_days_cal(pro,sp)
count = 0
for j in range(0,len(pro)) : # 현재 일수 기준으로 얼마나 진행되었는지 계산한다.
pro[j] = pro[j] + com_days*sp[j]
print(pro)
while pro != [] :
if pro[0] >= 100 :
count = count + 1
pro.pop(0)
sp.pop(0)
else :
break
if len(pro) == 0 :
return answer
|
다른사람 코드
1
2
3
4
5
6
7
8
|
def solution(progresses, speeds):
Q=[]
for p, s in zip(progresses, speeds):
if len(Q)==0 or Q[-1][0]<-((p-100)//s):
Q.append([-((p-100)//s),1])
else:
Q[-1][1]+=1
return [q[1] for q in Q]
|
[백준] 14502번: 연구소 풀이 with Python (3) | 2019.11.04 |
---|---|
[알고리즘 풀이] 프로그래머스 쇠막대기, Level 2(스택/큐) (0) | 2019.05.05 |
[알고리즘 풀이] 프로그래머스 위장, Level2(해시) (0) | 2019.04.21 |
[알고리즘 풀이] 프로그래머스 : 다리를 지나는 트럭, Level2(스택/큐) (0) | 2019.04.18 |
[알고리즘 풀이] 프로그래머스 : 2016년, 연습문제 (0) | 2019.04.16 |