Apologies, I realize I missed this question last year. From one of the precipitation files you attached in another other post, it looks like you may have figured this out already, but for the benefit of others I'll describe how the data as you described it could be used (there is also a version of K2 that can read radar files directly, which can be described separately if desired).
If you have pixels of accumulated rainfall depth, you can represent each pixel as an individual rain gage and K2 will interpolate differences in depths and times for each element as described on the "Rainfall Interpolation + Interception" page of the K2 documentation at
https://www.tucson.ars.ag.gov/kineros/. Each rain gage will need coordinates input as the X and Y parameters of the rain gage in the precipitation file, and the coordinates should equal the center of the radar pixel and be in the same projected coordinate system as the watershed is in AGWA.
e.g.
BEGIN GAGE 1
SAT = 0.2
X = 594065.3, Y = 3514148.6
N = 5
TIME DEPTH !(mm)
0 0.00
5 1.07
10 3.29
30 14.8
60 30.12
END
BEGIN GAGE 2
SAT = 0.2
X = 593117.8, Y = 3513843.3
N = 5
TIME DEPTH !(mm)
0 0.00
5 4.01
10 7.07
15 12.3
20 19.01
END
BEGIN GAGE x
...
...
etc