IT recording...
[BOJ] 1920 수 찾기 - python 본문
import sys
def input():
return sys.stdin.readline().rstrip()
N = int(input())
A = set(list(map(int,input().split(" "))))
M = int(input())
num = list(map(int,input().split(" ")))
for n in num:
if n in A:
print(1)
else:
print(0)
느낀점
"211007"
소요 시간 : 10min
- set을 사용하는 아주 매우 쉬운 문제..
'Algorithm' 카테고리의 다른 글
[BOJ] 2580 스도쿠 - python (0) | 2021.12.02 |
---|---|
[BOJ] 1759 암호 만들기 - python (0) | 2021.12.02 |
[BOJ] 1039 교환 - python (0) | 2021.12.02 |
[BOJ] 1103 게임 - python (0) | 2021.12.02 |
[BOJ] 1713 후보 추천하기 - python (0) | 2021.12.02 |
Comments