[백준 11728] 배열 합치기

Junyoung Park·2022년 3월 20일
0

코딩테스트

목록 보기
291/631
post-thumbnail

1. 문제 설명

배열 합치기

2. 문제 분석

pypy로 제출하니 시간 보정을 받았는지 내장 모듈로도 시간 안에 통과.

3. 나의 풀이

import sys

n, m = map(int, sys.stdin.readline().rstrip().split())
a = list(map(int, sys.stdin.readline().rstrip().split()))
b = list(map(int, sys.stdin.readline().rstrip().split()))
c = a + b
c.sort()
print(*c, sep =' ')
profile
JUST DO IT

0개의 댓글