파이썬 | 백준 | 10825 | 국영수
https://www.acmicpc.net/problem/10825 solution lambda x: (-국어, 영어, -수학, 이름) ※ 형식 에러 student = sorted(student, key=lambda x: (-x[1], x[2], -x[3), x[0])) -x[1] → -int(x[1]) import sys N = int(sys.stdin.readline()) student = [list((sys.stdin.readline().split())) for _ in range(N)] student = sorted(student, key=lambda x: (-int(x[1]), int(x[2]), -int(x[3]), x[0])) for stu in student: print(stu[0]) 78..