https://www.acmicpc.net/problem/2776
풀이
이분탐색 방법을 이용해서 풀어주어도 괜찮겠지만, 집합을 이용해서 문제를 풀어주었습니다.
코드
# 2776번 암기왕
t = int(input())
for _ in range(t):
_ = int(input())
note_1 = set(input().split())
_ = int(input())
note_2 = input().split()
for i in note_2:
if i in note_1:
print(1)
else:
print(0)
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준][Python] 2493번 탑 - 코팩 (0) | 2024.01.02 |
---|---|
[백준][PyPy3] 1062번 가르침 - 코팩 (0) | 2023.08.31 |
[백준][Python] 11653번 소인수분해 - 코팩 (0) | 2023.08.14 |
[백준][Python] 1002번 터렛 - 코팩 (0) | 2023.08.07 |
[백준][Python] 18110번 solved.ac - 코팩 (0) | 2023.08.01 |