코테분석#5-1 수 찾기(백준 1920)

정은경·2020년 2월 24일
0

알고리즘

목록 보기
10/125

문제

나의 풀이

시과초과 나는 나의 풀이....

count_a = int(input())
nums_a = list(map(int, input().split()))
count_b = int(input())
nums_b = list(map(int, input().split()))

for i in nums_b:
    if i not in nums_a:
        print(0)
    else:
        nums_a.remove(i)
        print(0)

쌤's 풀이

N, A = int(intpu()), {i: 1 for i in map(int, input().split())}
M = input()
for i in list(map(int, input().split())):
    print(A.get(i,0))
profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글