Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- xcz.kr
- Forensics
- 문자열
- 그리디 알고리즘
- cryptography
- Incognito
- 정렬
- 구현
- 백준
- C
- Web
- 수학
- Web Hacking
- Text
- HackCTF
- php
- Database
- wargame
- N0Named
- 사칙연산
- misc
- SuNiNaTas
- CTF
- 인코그니토
- writeup
- 써니나타스
- Digital Forensics
- Python
- MySQL
- Network
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 11650번 좌표 정렬하기 본문
[Baekjoon/Python3] 11650번 좌표 정렬하기
# 메모리 : 49204KB / 시간 : 4876ms / 코드 길이 : 163B
n = int(input())
locations = []
for i in range(n):
locations.append(list(map(int, input().split())))
locations.sort()
for j in locations:
print(j[0], j[1])
# 메모리 : 58508KB / 시간 : 464ms / 코드 길이 : 266B
import sys
n = int(sys.stdin.readline())
locations = []
for i in range(n):
locations.append(list(map(int, sys.stdin.readline().split())))
locations.sort(key = lambda lo: [lo[0], lo[1]])
for j in locations:
sys.stdout.write(str(j[0]) + ' ' + str(j[1]) + '\n')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 11652번 카드 (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 11651번 좌표 정렬하기 2 (0) | 2020.12.07 |
[Baekjoon/Python3] 11508번 2+1 세일 (0) | 2020.12.07 |
[Baekjoon/Python3] 11399번 ATM (0) | 2020.12.07 |
[Baekjoon/Python3] 11382번 꼬마 정민 (0) | 2020.12.07 |
Comments