CF109B.Lucky Probability

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not.

Petya and his friend Vasya play an interesting game. Petya randomly chooses an integer pp from the interval [pl,pr][p_{l},p_{r}] and Vasya chooses an integer vv from the interval [vl,vr][v_{l},v_{r}] (also randomly). Both players choose their integers equiprobably. Find the probability that the interval [min(v,p),max(v,p)][min(v,p),max(v,p)] contains exactly kk lucky numbers.

输入格式

The single line contains five integers plp_{l} , prp_{r} , vlv_{l} , vrv_{r} and kk ( 1<=pl<=pr<=109,1<=vl<=vr<=109,1<=k<=10001<=p_{l}<=p_{r}<=10^{9},1<=v_{l}<=v_{r}<=10^{9},1<=k<=1000 ).

输出格式

On the single line print the result with an absolute error of no more than 10910^{-9} .

输入输出样例

  • 输入#1

    1 10 1 10 2
    

    输出#1

    0.320000000000
    
  • 输入#2

    5 6 8 10 1
    

    输出#2

    1.000000000000
    

说明/提示

Consider that [a,b][a,b] denotes an interval of integers; this interval includes the boundaries. That is,

In first case there are 3232 suitable pairs: (1,7),(1,8),(1,9),(1,10),(2,7),(2,8),(2,9),(2,10),(3,7),(3,8),(3,9),(3,10),(4,7),(4,8),(4,9),(4,10),(7,1),(7,2),(7,3),(7,4),(8,1),(8,2),(8,3),(8,4),(9,1),(9,2),(9,3),(9,4),(10,1),(10,2),(10,3),(10,4)(1,7),(1,8),(1,9),(1,10),(2,7),(2,8),(2,9),(2,10),(3,7),(3,8),(3,9),(3,10),(4,7),(4,8),(4,9),(4,10),(7,1),(7,2),(7,3),(7,4),(8,1),(8,2),(8,3),(8,4),(9,1),(9,2),(9,3),(9,4),(10,1),(10,2),(10,3),(10,4) . Total number of possible pairs is 1010=10010·10=100 , so answer is 32/10032/100 .

In second case Petya always get number less than Vasya and the only lucky 77 is between this numbers, so there will be always 11 lucky number.

首页