출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

간단한 문제이다. 단순히 A 안의 모든 요소들이 B에 포함되어 있는지 확인해주면 된다. 간단하므로 따로 해설하지는 않겠다.

import sys

T = int(sys.stdin.readline())

for i in range(T):
    num_A = int(sys.stdin.readline())
    A = list(map(int, sys.stdin.readline().split()))
    num_B = int(sys.stdin.readline())
    B = list(map(int, sys.stdin.readline().split()))
    for j in A:
        if not j in B:
            print(False)
            break
    else:
        print(True)