본문 바로가기
💻 하나씩 차곡차곡/백준알고리즘 (Python,Java)

백준 23246번 파이썬

by 뚜루리 2024. 10. 15.
728x90
320x100

 

구현

player = int(input())
input_score = [list(map(int, input().split())) for _ in range(player)]
input_score = sorted(input_score, key=lambda x: (x[1] * x[2] * x[3], x[1] + x[2] + x[3], x[0]))

for i in input_score[:3]:
	print(i[0], end=" ")
  • 세 순위를 곱한 점수가 낮은 선수가 우위 -> 오름차순
  • 곱한 값이 같을 땐 합산 점수가 낮은 선수가 우위 -> 오름차순
  • 합산 점수가 같을 때 등번호가 낮은 선수가 우위 -> 오름차순
  • Sorted() 함수 커스텀 하기...
728x90
320x100

'💻 하나씩 차곡차곡 > 백준알고리즘 (Python,Java)' 카테고리의 다른 글

백준 1182번 파이썬  (0) 2024.11.14
백준 11650번 파이썬  (0) 2024.10.14
백준 10974번 파이썬  (0) 2024.10.11
백준 1759번 파이썬  (0) 2024.10.10
백준 6603번 파이썬  (0) 2024.10.09