Skip to content

Commit

Permalink
[Silver V] Title: 좌표 정렬하기, Time: 388 ms, Memory: 46628 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jun 27, 2024
1 parent 9b3ae9b commit 2232a5b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
28 changes: 28 additions & 0 deletions 백준/Silver/11650. 좌표 정렬하기/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# [Silver V] 좌표 정렬하기 - 11650

[문제 링크](https://www.acmicpc.net/problem/11650)

### 성능 요약

메모리: 46628 KB, 시간: 388 ms

### 분류

정렬

### 제출 일자

2024년 6월 28일 00:18:37

### 문제 설명

<p>2차원 평면 위의 점 N개가 주어진다. 좌표를 x좌표가 증가하는 순으로, x좌표가 같으면 y좌표가 증가하는 순서로 정렬한 다음 출력하는 프로그램을 작성하시오.</p>

### 입력

<p>첫째 줄에 점의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N개의 줄에는 i번점의 위치 x<sub>i</sub>와 y<sub>i</sub>가 주어진다. (-100,000 ≤ x<sub>i</sub>, y<sub>i</sub> ≤ 100,000) 좌표는 항상 정수이고, 위치가 같은 두 점은 없다.</p>

### 출력

<p>첫째 줄부터 N개의 줄에 점을 정렬한 결과를 출력한다.</p>

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import sys
input = sys.stdin.readline
n = int(input())

arr = []
for i in range(n):
[x1, y1]= map(int,input().split())
arr.append([x1,y1])

arr.sort()
for i in range(n):
print(arr[i][0], arr[i][1])

0 comments on commit 2232a5b

Please sign in to comment.