BOJ : 배열 합치기 [11728]

재현·2021년 6월 27일
0
post-custom-banner

1. 문제


정렬되어있는 두 배열 A와 B가 주어진다. 두 배열을 합친 다음 정렬해서 출력하는 프로그램을 작성하시오.

출처 : https://www.acmicpc.net/problem/11728

2. 아이디어


  • mine
    1. 입력 받은 배열을 합친다.
    2. 정렬 후 출력한다.

3. 코드


mine

import sys
input = sys.stdin.readline
n, m = map(int, input().split())
array1 = list(map(int, input().split()))
array2 = list(map(int, input().split()))
result = array1 + array2
result.sort()
for res in result:
  print(res, end=' ')
profile
성장형 프로그래머

0개의 댓글