This is only a personal opinion but I believe /proc/pid/stat should be considered deprecateddeprecated and you should use /proc/pid/status in all cases instead.
stat is not much more efficient to parse and it has a subtle danger which can lead to bugs but can even pose security risks (see this for example). It also contains less fields than status.
See: