to find actual size of a table:
select count (distinct substr(rowid,1,15)) from schema.table_name

explanation:
each rowid references a block. Sum of all the distinct blocks give you the actual table size.

HTH