Is there any sort option available in find command to get directory with least access date/time
find . -type d -printf "%A@ %p\n" | sort -n | tail -n 1 | cut -d " " -f 2-
If you prefer the filename without leading path, replace %p by %f.
%p
%f