문제 https://www.acmicpc.net/problem/10814 10814번: 나이순 정렬 온라인 저지에 가입한 사람들의 나이와 이름이 가입한 순서대로 주어진다. 이때, 회원들을 나이가 증가하는 순으로, 나이가 같으면 먼저 가입한 사람이 앞에 오는 순서로 정렬하는 프로그램을 www.acmicpc.net 코드 import sys n = int(sys.stdin.readline()) people_list = [] for _ in range(n): age, name = sys.stdin.readline().rstrip().split() age = int(age) people_list.append((age, name)) people_list.sort(key = lambda x: x[0]) for i i..