문제
https://www.acmicpc.net/problem/11650
문제는 위 사이트를 참고해주세요.
풀이
N = int(input())
ptLst = []
for _ in range(N):
x = list(map(int, input().split()))
ptLst.append(x)
ptLst.sort()
for x in ptLst:
for i in x:
print(i, end=' ')
print("")
파이썬 sort를 사용했습니다.
'IT > 알고리즘' 카테고리의 다른 글
1일 N알고리즘 - #43 (0) | 2020.07.01 |
---|---|
1일 N알고리즘 - #42 (0) | 2020.07.01 |
1일 N알고리즘 - #40 (0) | 2020.06.09 |
1일 N알고리즘 - #39 (0) | 2020.06.09 |
1일 N알고리즘 - #38 (0) | 2020.06.08 |
댓글