1 삼성시의 버스노선 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 T = int(input()) for tc in (1,T+1): N = int(input()) bus_stop = [0] * (5001) #버스 정류장 체크 포인트 for i in range(N): A,B = map(int, input().split()) # 해당 정류장에 지나는 버스의 대수 누적 for j in range(A, B+1): bus_stop[j] += 1 P = int(input()) # 우리가 확인하고 싶은 버스정류장의 수 print("#{}".format(tc), end = " ") for i in range(P): C = int(input()) print(bus_sto..