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 |
Tags
- 백준
- stateful
- Stack
- TDD
- Query
- dictionary
- Programmers
- ORM
- stack&que
- combinations
- Bruteforce
- was
- pytest
- algorithm
- Unit Testing
- Q objects
- Django
- Git
- postreSQL
- greedy
- utils
- HTTP 완벽 가이드
- Python
- AWS
- permutations
- Gunicorn
- ws
- SQL
- codecov
- stateless
Archives
- Today
- Total
해피 코딩!
[백준] 로프 2217번 본문
import sys
def solution(lst):
lst.sort()
length = len(lst)
max_w = 0
for index, rope in enumerate(lst):
w = rope *(length-index)
lst[index] = w
lst = sorted(lst)
return lst[-1]
limit = int(sys.stdin.readline())
lst = [0] * limit
for index in range(limit):
lst[index]= (int(sys.stdin.readline()))
print(solution(lst))
문제에서 입력에 대하여 sys.stdin.readlint()
을 사용하였을 때와
input()
을 사용하였을 때 속도의 차이가 현저하게 났던 문제였다.
동일한 코드로
input으로 코드 실행 시 최대 3900ms 가 발생하였고
readlint의 경우는 160ms 이었다.
문제의 지문이 이해가 가지 않아 문제 내용 이해를 위해
참고 다른 블로그글의 문제 풀이를 읽고 문제를 풀 수 있었다.
'알고리즘' 카테고리의 다른 글
[백준] 2231 분해합 (0) | 2020.12.27 |
---|---|
[프로그래머스] level 2 구명보트 (0) | 2020.12.24 |
[백준] 회의실 배정 (0) | 2020.12.24 |
[백준] 동전 0 (0) | 2020.12.23 |
[프로그래머스] 큰 수 만들기 (0) | 2020.12.19 |
Comments