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
- AWS
- utils
- pytest
- Python
- Bruteforce
- Programmers
- Git
- Stack
- was
- codecov
- SQL
- permutations
- postreSQL
- greedy
- HTTP 완벽 가이드
- Query
- Gunicorn
- combinations
- stateless
- TDD
- Unit Testing
- stateful
- Q objects
- 백준
- dictionary
- algorithm
- Django
- ws
- stack&que
- ORM
Archives
- Today
- Total
해피 코딩!
[프로그래머스] 다리를 지나는 트럭 본문
문제 링크
def solution(bridge_length, weight, truck_weights):
answer = 0
bridge = bridge_length * [0]
while bridge:
bridge.pop(0)
answer += 1
if truck_weights:
head = truck_weights[0]
if sum(bridge) + head <= weight:
bridge.append(head)
del truck_weights[0]
else:
bridge.append(0)
return answer
'알고리즘' 카테고리의 다른 글
[프로그래머스] 모의고사 (0) | 2020.12.12 |
---|---|
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2020.12.12 |
[프로그래머스] 내적 (0) | 2020.12.12 |
[프로그래머스] 기능개발 (0) | 2020.12.12 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2020.12.12 |
Comments