#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 11 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 NN random variables, the ithi_{th} of which can take any integer value from some segment [Li,Ri][L_i, R_i] (all numbers from this segment are equiprobable). It means that the value of the ithi_{th} quantity can be equal to any integer number from a given interval [Li,Ri][L_i, R_i] with probability 1RiLi+1\frac{1}{R_i - L_i + 1}.

Fish wants to know the probability of the event that the first digits of at least K%K\% 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 11 is encountered and if it is encountered in at least KK per cent of those NN 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 NN which is the number of random variables (1N10001\leq  N \leq  1000). Then follow NN lines containing pairs of numbers Li,RiL_i, R_i, each of whom is a description of a random variable. It is guaranteed that 1LiRi10181\leq  L_i \leq  R_i \leq  10^{18}.

The last line contains an integer KK (0K1000\leq  K \leq 100).

All the numbers in the input file are integers.

Output

For each case print the required probability. Print the fractional number rounded 66 digits.

Samples

1
1 2
50
2
1 2
9 11
50
0.500000
0.833333

Resources

2011寒假训练(一)(Not Original)