Your rating (16 GB data / 182 515 lines) X 38 693 lines looks like a reasonable rating.
Another estimate is to take the average row size and multiply by this the number of rows you want to delete.
, . :
select avg_record_size_in_bytes * 38693 / 1024.0 as [MB]
from sys.dm_db_index_physical_stats(db_id(), object_id('MyTable'), 1, 0, 'Sampled')
, .