I have read that to look up the value at index n of an array, the computer will calculate (array start location) + (n * (data type size)) to find the location in memory of the value. Would this not take more than O(1) time because multiplication takes more than O(1) time?