2022 Fall Waterloo Local Contest, Problem B
Thomas Edison is actively working on a better version of a lightbulb. During that process, he covers entire
fields with batches of lightbulbs and conducts tests on them. In his current experiment, he arranged
For example, in the setup below, where
1 0 1 1
0 1 1 1
0 1 0 0
1 1 1 0
1 1 0 1
Note that we're interested in horizontal sequences only.
Constraints
Input Specification
You're given three numbers separated by spaces – positive integers
Output Specification
Output the answer to the problem. Your answer would be considered correct if its absolute or relative
error is less than
Sample Input 1
2 3 0.5
Sample Output 1
1.828125000000
Sample Input 2
47 74 1
Sample Output 2
74.000000000000
Comments