문제 링크
https://www.acmicpc.net/problem/11728
정답 코드
import sys
n,m = map(int,sys.stdin.readline().split())
N = list(map(int,sys.stdin.readline().split()))
M = list(map(int,sys.stdin.readline().split()))
result = N + M
result = sorted(result)
print(*result)
728x90
'파이썬 알고리즘 문제 풀이' 카테고리의 다른 글
Baekjoon Online Judge 2448번 파이썬. 분할 정복. (0) | 2023.01.19 |
---|---|
Baekjoon Online Judge 2447번 파이썬. 분할 정복. (0) | 2023.01.18 |
Baekjoon Online Judge 1744번. 그리디. (0) | 2023.01.13 |
Baekjoon Online Judge 11399번 파이썬. 그리디. (0) | 2023.01.09 |
Baekjoon Online Judge 1931번 파이썬. 그리디. (0) | 2023.01.09 |