[백준]S5-11651

2706 단어 백준정렬백준

import sys
n = int(input())
nums = [tuple(map(int,sys.stdin.readline().split())) for _ in range(n)]
sorted_nums = sorted(nums, key = lambda x: (x[1], x[0]))
for e in sorted_nums:
    print(' '.join(map(str,e)))

좋은 웹페이지 즐겨찾기