728x90
https://www.acmicpc.net/problem/11728
사실 for 문으로 출력해도 시간안에 풀 수 있었지만 , join으로 출력하는게 훨씬 시간 단축이 되었다
1. for문으로 출력할 때
2. join으로 출력할 때
기억해두자 !!
n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = a+b
answer = ' '.join(map(str, sorted(c))) # 반복문 대신 join으로 출력하기 !
print(answer)
728x90
'Algorithm (PS)' 카테고리의 다른 글
[백준] 18353 병사 배치하기 (0) | 2022.01.27 |
---|---|
[백준] 9663 N-Queen Python 풀이 와 백트래킹, 그리고 DFS의 비효율적인 사용 (0) | 2022.01.27 |
[백준] 11404 플로이드 -> 최단 경로 찾기 알고리즘 (0) | 2022.01.25 |
[카카오2020] 가사 검색 in Python (0) | 2022.01.25 |
[백준] 2110 공유기 설치 in Python (0) | 2022.01.25 |