본문 바로가기
백준 알고리즘

파이썬) 백준 알고리즘 | 2776번 : 암기왕

by 코딩새내기_ 2022. 3. 2.

https://www.acmicpc.net/problem/2776

 

2776번: 암기왕

연종이는 엄청난 기억력을 가지고 있다. 그래서 하루 동안 본 정수들을 모두 기억 할 수 있다. 하지만 이를 믿을 수 없는 동규는 그의 기억력을 시험해 보기로 한다. 동규는 연종을 따라 다니며,

www.acmicpc.net

백준 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)

댓글