728x90
https://www.acmicpc.net/problem/11651
파이썬 정렬에 대해 미리 정리해놔서 풀 수 있던 문제
https://foameraserblue.tistory.com/102?category=481823
파이썬에서 알고리즘에 필요한 정렬법을 사례로 정리해놨다.
람다식을 이용해서 풀면 아주 쉽게 풀 수 있음!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import sys
input = sys.stdin.readline
n = int(input())
li = []
for _ in range(n):
l = list(map(int, input().split()))
li.append(l)
li = sorted(li, key=lambda x: (x[1], x[0]))
for l in li:
print(l[0], l[1])
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 4949번 ] 균형잡힌 세상 (파이썬/python) (0) | 2021.06.15 |
---|---|
[백준 2805번] 나무 자르기 (파이썬/python) (0) | 2021.06.14 |
[백준 11729번] 하노이 탑 이동 순서 (파이썬/python) (0) | 2021.06.14 |
[백준 1929번] 소수 구하기 (파이썬/python) (0) | 2021.06.14 |
[백준 10250번 ] ACM 호텔 (파이썬/python) (0) | 2021.06.14 |