Problem F
Prosjek
Slavko decided to challenge Mirko! He gave him a real number
Mirko’s task is to pick the minimum number of papers in a
way that the average of the numbers written on them equals
exactly
Input
First and only line of input contains real number
Output
First and only line of output should contain five nonnegative integers – numbers of ones, twos, threes, fours and fives used, respectively. If there are multiple solutions, output any one of them.
Sample Input 1 | Sample Output 1 |
---|---|
5.0 |
0 0 0 0 1 |
Sample Input 2 | Sample Output 2 |
---|---|
4.5 |
0 0 0 1 1 |
Sample Input 3 | Sample Output 3 |
---|---|
3.20 |
2 0 0 1 2 |