You are given an integer n denoting the total number of servers and a 2D0-indexed integer array logs, where logs[i] = [server_id, time] denotes that the server with id server_id received a request at time time.
You are also given an integer x and a 0-indexed integer array queries.
Return a 0-indexed integer arrayarrof lengthqueries.lengthwherearr[i]represents the number of servers that did not receive any requests during the time interval[queries[i] - x, queries[i]].