처음 든 생각 - 흠 이게 뭔 소리지 -> 종이에 하나씩 차근차근 써가면서 읽어보니 이해됐다. - 아 결국 큐에 있는 애들만 원소를 바꿔치기 하면 되겠구나 나의 답 import sys from collections import deque input = sys.stdin.readline N = int(input()) isStack = list(map(int, input().split())) arr = list(map(int, input().split())) M = int(input()) new = list(map(int, input().split())) q = deque() for i in range(N): if isStack[i] == 0: q.append(arr[i]) q.reverse() result..