Is there any sort option available in find command to get directory with least access date/time
This sound like more of a job for ls:
ls
ls -ultd *|grep ^d
The problem with using find, at least on my system (cygwin/bash), is that find accesses the dirs, so all access-times result in current time, defeating your apparent purpose.
find