https://www.acmicpc.net/problem/2776
백준 2776 '암기왕' 문제입니다.
note1 정보를 ditctionary 형태로 저장해둔 뒤에
note2 정보를 받아서 있으면 1을 출력 없으면 0을 출력하게 하였습니다.
import sys
input = sys.stdin.readline
t = int(input())
for _ in range(t):
n = int(input())
s = dict()
note1 = list(map(int, input().split()))
for note in note1:
if note not in s.keys():
s[note] = 1
m = int(input())
note2 = list(map(int, input().split()))
for note in note2:
if note in s.keys():
print(1)
else:
print(0)
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 2910번 : 빈도 정렬 (0) | 2022.03.02 |
---|---|
파이썬) 백준 알고리즘 | 1351번 : 무한 수열 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 9375번 : 패션왕 신해빈 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 1620번 : 나는야 포켓몬 마스터 이다솜 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 11659번 : 구간 합 구하기 4 (0) | 2022.03.02 |
댓글