The first step is to collect the numbers. The problem statement is R2 = R1+5, R3 = R2-6, R4 = R3+11, R5 = R4-8.
We must now find dice-roll values that satisfy all these equations. The complete list of possible dice-roll values is (1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 30, 36).
The possible values of (R1,R2) are ((1,6), (3,8), (4,9), (5,10), (10,15), (15,20), (20,25), (25,30)).
The possible values of (R1,R2,R3) are ((3,8,2), (4,9,3), (5,10,4), (10,15,9), (25,30,24)).
The possible values of (R1,R2,R3,R4) are ((5,10,4,15), (10,15,9,20))
The possible values of (R1,R2,R3,R4,R5) are only one: (10,15,9,20,12). That is the solution.