If the source data is specified (that is, the "Time" column represents minutes, seconds and milliseconds), then you can add to a reasonable result (795.013 seconds for the first sample of four) a transformation similar to:
=60*index(split(B2,":"),0,1)+index(split(B2,":"),0,2)+index(split(B2,":"),0,3)/1000
required.
To convert the sum (presumably in C6) to the same absurd format as for input ( 13:15:13 ):
=int(C6/60)&":"&int(mod(C6,60))&":"&value(mid(C6,find(".",C6)+1,3))
"
pnuts source share