<백준> 10816번 파이썬 알고리즘
n = int(input()) l = list(map(int, input().split())) m = int(input()) k = list(map(int, input().split())) r = [] for i in k: r.append(l.count(i)) for j in r: print(j, end= " ") 시간 초과 났다 실버4 문제치고 너무 쉽다는 생각이 들긴했다 n = int(input()) l = list(map(int, input().split())) m = int(input()) k = list(map(int, input().split())) n_count = {} for i in l: try: n_count[i] += 1 except: n_count[i] = 1 res = [] for..