[백준]S4-1920

py_code·2021년 1월 11일
0

백준-실버4

목록 보기
2/7
post-custom-banner

# dict.fromkeys() : 180ms
n = input()
n_dict = dict.fromkeys(input().split() , 0).keys()
m = input()
m_list = input().split()

for e in m_list:
    print(1 if e in n_dict else 0)

# set : 168ms
n = int(input())
n_list = set(input().split())
m = int(input())
m_list = input().split()

for e in m_list:
    print(1 if e in n_list else 0)
profile
개발자를 꿈꿉니다.
post-custom-banner

0개의 댓글