목차

숫자 카드

ps
링크acmicpc.net/…
출처BOJ
문제 번호10815
문제명숫자 카드
레벨실버 4
분류

기초

시간복잡도O(n+m)
인풋사이즈n<=500,000, m<=500,000
사용한 언어Python
제출기록120856KB / 388ms
최고기록392ms
해결날짜2022/02/18

풀이

코드

<dkpr py> “”“Solution code for “BOJ 10815. 숫자 카드”.

- Problem link: https://www.acmicpc.net/problem/10815 - Solution link: http://www.teferi.net/ps/problems/boj/10815 ”“”

def main():

  N = int(input())  # pylint: disable=unused-variable
  cards = set(input().split())
  M = int(input())  # pylint: disable=unused-variable
  nums = input().split()
  print(' '.join(('1' if num in cards else '0') for num in nums))

if name == 'main':

  main()