#Lutece0331. First Digit Law
First Digit Law
Migrated from Lutece 331 First Digit Law
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
In the probability theory the following paradox called Benford's law is known: "In many lists of random numbers taken from real sources, numbers starting with digit occur much more often than numbers starting with any other digit" (that's the simplest form of the law).
Having read about it on the book, Fish got intrigued by the statement and wishes to thoroughly explore it. He finds the following similar problem interesting in particular: there are random variables, the of which can take any integer value from some segment (all numbers from this segment are equiprobable). It means that the value of the quantity can be equal to any integer number from a given interval with probability .
Fish wants to know the probability of the event that the first digits of at least of those values will be equal to one. In other words, let us consider some set of fixed values of these random variables and leave only the first digit (the MSD — most significant digit) of each value. Then let's count how many times the digit is encountered and if it is encountered in at least per cent of those values, than such set of values will be called a good one. You have to find the probability that a set of values of the given random variables will be a good one.
Input
There are multi-cases. The first line of each case contains number which is the number of random variables (). Then follow lines containing pairs of numbers , each of whom is a description of a random variable. It is guaranteed that .
The last line contains an integer ().
All the numbers in the input file are integers.
Output
For each case print the required probability. Print the fractional number rounded digits.
Samples
1
1 2
50
2
1 2
9 11
50
0.500000
0.833333
Resources
2011寒假训练(一)(Not Original)