Algorithm/Implementation
(Python/파이썬) - 백준(BOJ) 11728번 : 배열 합치기
하눤석
2022. 4. 9. 11:44
728x90
https://www.acmicpc.net/problem/11728
- 문제 :
정렬되어있는 두 배열 A와 B가 주어진다. 두 배열을 합친 다음 정렬해서 출력하는 프로그램을 작성하시오.
- 풀이 :
A와 B 배열을 입력받고 둘을 결합하여 정렬한다. 이를 출력양식에 맞추기 위해 join을 사용해 출력한다.
- 소스코드 :
N,M = map(int,input().split())
print(' '.join(map(str,sorted(list(map(int,input().split()))+list(map(int,input().split()))))))
320x100