RUBY

[백준] 좌표 정렬하기2 본문

PS/BOJ

[백준] 좌표 정렬하기2

RUBY_루비 2020. 10. 5. 23:59

출처:: www.acmicpc.net/problem/11651

분류:: 정렬

 

1. 문제 이해 및 해결과정

 

2. 풀이방법

  1. [ python ] 

#좌표 정렬하기2
#https://www.acmicpc.net/problem/11651
import sys
sys.stdin = open("input.txt","r")
n=int(input())
arr=[]
for i in range(n):
    x,y=map(int,input().split())
    arr.append((x,y))
arr.sort(key=lambda x:(x[1],x[0]))
for x,y in arr:
    print(x,y)

 

3. 오답원인

 

4. 알게된 점

 

'PS > BOJ' 카테고리의 다른 글

[백준] 좌표 정렬하기  (0) 2020.10.05
[백준] 나이순 정렬  (0) 2020.10.05
[백준] 수 정렬하기 2  (0) 2020.10.05
[백준] 연속합2  (0) 2020.10.04
[백준] 오르막 수  (0) 2020.10.04
Comments