-
[백준 문제풀이] 얼렁뚱땅 11728번 배열합치기 풀이얼렁뚱땅 백준 문제풀이 2022. 4. 15. 00:14
https://www.acmicpc.net/problem/11728 import sys n, m = map(int, sys.stdin.readline().split()) ar_1 = list(map(int,sys.stdin.readline().split())) ar_2 = list(map(int,sys.stdin.readline().split())) ar_1 = ar_1 + ar_2 ar_1.sort() for i in range(len(ar_1)) : print(ar_1[i],end=' ')
'얼렁뚱땅 백준 문제풀이' 카테고리의 다른 글
[백준 문제풀이] 얼렁뚱땅 12871번 무한문자열 풀이 (0) 2022.04.15 [백준 문제풀이] 얼렁뚱땅 16953 A->B 풀이 (0) 2022.04.15 [백준 문제풀이] 얼렁뚱땅 5671번 호텔 방 번호 풀이 (0) 2022.04.13 [백준 문제풀이] 얼렁뚱땅 1715번 카드 정렬하기 (0) 2022.04.08 [백준 문제풀이] 얼렁뚱땅 2075번 N번째 큰 수 풀이 (0) 2022.04.08