foldr (+) 0 [1..5000000] の計算で以下のような実行時統計を得た
この見方を教えてください。

$ T07t_r 5000000 +RTS -sstderr -K800M
c:\G\check\Haskell\ex\test\T07t_r.exe 5000000 +RTS -sstderr -K800M
12500002500001

   892,941,300 bytes allocated in the heap --- @
   330,061,040 bytes copied during GC
   167,842,072 bytes maximum residency (10 sample(s)) --- A
   117,910,940 bytes maximum slop
      327 MB total memory in use (2 MB lost due to fragmentation) --- B

@ , A , Bの表す意味の違い
スタックの使用量はここには現れていない?