hint: brute force means every possible route was calculated. So, figure out how many routes are possible with seven cities, divide the time by that, and that gives you how much time it takes to calculate a single route with 7 cities.
divide the time for an individual route by 7 and that tells you how much time it takes to evaluate an individual route per 1 city.
Multiply that by 11, you get the time it takes to measure an 11 city route.
With that, all you need is the number of routes in 11 cities, multiply that by the time to calculate each route, and you're good.