CF340A.The Wall

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Iahub and his friend Floyd have started painting a wall. Iahub is painting the wall red and Floyd is painting it pink. You can consider the wall being made of a very large number of bricks, numbered 11 , 22 , 33 and so on.

Iahub has the following scheme of painting: he skips x1x-1 consecutive bricks, then he paints the xx -th one. That is, he'll paint bricks xx , 2x2·x , 3x3·x and so on red. Similarly, Floyd skips y1y-1 consecutive bricks, then he paints the yy -th one. Hence he'll paint bricks yy , 2y2·y , 3y3·y and so on pink.

After painting the wall all day, the boys observed that some bricks are painted both red and pink. Iahub has a lucky number aa and Floyd has a lucky number bb . Boys wonder how many bricks numbered no less than aa and no greater than bb are painted both red and pink. This is exactly your task: compute and print the answer to the question.

输入格式

The input will have a single line containing four integers in this order: xx , yy , aa , bb . ( 1<=x,y<=10001<=x,y<=1000 , 1<=a,b<=21091<=a,b<=2·10^{9} , a<=ba<=b ).

输出格式

Output a single integer — the number of bricks numbered no less than aa and no greater than bb that are painted both red and pink.

输入输出样例

  • 输入#1

    2 3 6 18
    

    输出#1

    3

说明/提示

Let's look at the bricks from aa to bb (a=6,b=18)(a=6,b=18) . The bricks colored in red are numbered 6, 8, 10, 12, 14, 16, 18. The bricks colored in pink are numbered 6, 9, 12, 15, 18. The bricks colored in both red and pink are numbered with 6, 12 and 18.

首页