백준 / 로프 / 2217번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다. 문제 제목: 로프 / 2217번 (실버 4단계)문제 사이트: https://www.acmicpc.net/problem/2217 문제 설명 나의 풀이# 로프의 개수n = int(input())# 최대 중량을 구하는 변수max_weight = 0# 로프를 저장하는 배열rope = [int(input()) for _ in range(n)]# 내림차순으로 저장rope.sort(reverse = True)# 이전 무게current_weight = rope[0]for i in range(1, n): # 이후 무게 next_weight = rope[i] * (i + 1) if current_weight > next_weight: max_weight = cu..