[백준]S5-11650

py_code·2020년 12월 30일
0

백준-실버5

목록 보기
11/19
post-custom-banner

1.input()이 많을 땐 sys.stdin 활용

2.sorted는 [x,y]에서 숫자인 x,y 모두에 대해 동시 정렬이 가능하다

3.list를 합쳐서 문자열로 만들 때는 '사이에 들어갈 문자'.join(list명)

  • 다만 이때 list내의 모든 요소들은 str 형태여야 함
import sys
n = int(input())
nums = sorted([tuple(map(int,sys.stdin.readline().split())) for _ in range(n)])
for e in nums:
    print(' '.join(list(map(str,e))))
profile
개발자를 꿈꿉니다.
post-custom-banner

2개의 댓글

comment-user-thumbnail
2020년 12월 30일

꾸준히 하시는 모습이 보기 좋아요!😊

1개의 답글