보안을 그리다, 훈이

[Baekjoon/Python3] 11728번 배열 합치기 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 11728번 배열 합치기

HooNeee 2020. 12. 7. 00:51

[Baekjoon/Python3] 11728번 배열 합치기

 

www.acmicpc.net/problem/11728

 

11728번: 배열 합치기

첫째 줄에 배열 A의 크기 N, 배열 B의 크기 M이 주어진다. (1 ≤ N, M ≤ 1,000,000) 둘째 줄에는 배열 A의 내용이, 셋째 줄에는 배열 B의 내용이 주어진다. 배열에 들어있는 수는 절댓값이 109보다 작거

www.acmicpc.net

 

n, m = map(int, input().split())
ab = []
for i in range(2):
    ab += list(map(int, input().split()))
ab.sort()
print(*ab)
Comments