Case = int(input())
customer_list = []
for i in range(Case):
age, name = input().split()
age = int(age)
customer_list.append([age, name, i])
customer_list = sorted(customer_list, key = lambda x : (x[0], x[2]))
sorted_customer_list = list(map(lambda x : x[:-1], customer_list))
for customer in sorted_customer_list:
print(*customer)
'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글
백준 카카오 코드 페스티벌 예선 15954번(python) (0) | 2019.07.30 |
---|---|
백준 카카오 코드 페스티벌 예선 15953번(python) (0) | 2019.07.30 |
백준 11650번(python) (0) | 2019.07.19 |
백준 1107번(python) (0) | 2019.07.10 |
백준 1436번(python) (1) | 2019.07.08 |