Not directly through pg_stat_statements, no. But you can:
* Use log_min_duration_statement to spy on individual runs
* Periodically copy pg_stat_statements to another table, reset the stats, and then you have some time-based buckets to play with.
Cheers,
Greg