CF68A.Irrational problem

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little Petya was given this problem for homework:

You are given function (here represents the operation of taking the remainder). His task is to count the number of integers xx in range [a;b][a;b] with property f(x)=xf(x)=x .

It is a pity that Petya forgot the order in which the remainders should be taken and wrote down only 4 numbers. Each of 24 possible orders of taking the remainder has equal probability of being chosen. For example, if Petya has numbers 1, 2, 3, 4 then he can take remainders in that order or first take remainder modulo 4, then modulo 2, 3, 1. There also are 22 other permutations of these numbers that represent orders in which remainder can be taken. In this problem 4 numbers wrote down by Petya will be pairwise distinct.

Now it is impossible for Petya to complete the task given by teacher but just for fun he decided to find the number of integers with property that probability that f(x)=xf(x)=x is not less than 31.415926535271828182845904531.4159265352718281828459045% . In other words, Petya will pick up the number xx if there exist at least 77 permutations of numbers p1,p2,p3,p4p_{1},p_{2},p_{3},p_{4} , for which f(x)=xf(x)=x .

输入格式

First line of the input will contain 6 integers, separated by spaces: p1,p2,p3,p4,a,bp_{1},p_{2},p_{3},p_{4},a,b ( 1<=p1,p2,p3,p4<=1000,0<=a<=b<=314151<=p_{1},p_{2},p_{3},p_{4}<=1000,0<=a<=b<=31415 ).

It is guaranteed that numbers p1,p2,p3,p4p_{1},p_{2},p_{3},p_{4} will be pairwise distinct.

输出格式

Output the number of integers in the given range that have the given property.

输入输出样例

  • 输入#1

    2 7 1 8 2 8
    

    输出#1

    0
    
  • 输入#2

    20 30 40 50 0 100
    

    输出#2

    20
    
  • 输入#3

    31 41 59 26 17 43
    

    输出#3

    9
    
首页