반응형 19201 baekjoon - python - 1920 www.acmicpc.net/problem/1920 1920번: 수 찾기 첫째 줄에 자연수 N(1≤N≤100,000)이 주어진다. 다음 줄에는 N개의 정수 A[1], A[2], …, A[N]이 주어진다. 다음 줄에는 M(1≤M≤100,000)이 주어진다. 다음 줄에는 M개의 수들이 주어지는데, 이 수들이 A안�� www.acmicpc.net import sys a = int(sys.stdin.readline()) x = list(map(int,sys.stdin.readline().split())) b = int(sys.stdin.readline()) y = list(map(int,sys.stdin.readline().split())) dic={} for i in x: dic[i]=True for j in.. 2020. 10. 10. 이전 1 다음 반응형