https://www.acmicpc.net/problem/11650
1. 내가 작성한 코드
import sys
n = int(sys.stdin.readline())
arr = []
for i in range(n):
arr.append(list(map(int,sys.stdin.readline().split())))
a = sorted(arr, key = lambda x:(x[0],x[1]))
for i in a:
print(f'{i[0]} {i[1]}')
lambda 함수 공부해놓으니까 좋ㄴㅔ~
list의 원소를 0번째 인덱스를 기준으로 먼저 정렬한 후, 1번째 인덱스를 기준으로 정렬해서 출력하면 된다.
계속 시간초과가 떠서 input()을 sys.stdin.readline()으로 바꾸어줬다.
'🔅코딩테스트 공부🔅 > ❗백준' 카테고리의 다른 글
[백준] 10815번 숫자 카드(with python) (0) | 2023.02.01 |
---|---|
[백준] 1181번 단어 정렬(with python) (0) | 2023.02.01 |
[백준] 1026번 보물(with python) (0) | 2023.01.31 |
[백준] 10828번 스택(with python) (0) | 2023.01.29 |
[백준] 9093번 단어 뒤집기(with python) (0) | 2023.01.28 |
댓글