301798: CF340A. The Wall

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

The Wall

题意翻译

给定 $x,y,a,b,$ 求在 $a$ 到 $b$ 之间(包含 $a$ 和 $b$)有多少个 $x$ 和 $y$ 的公倍数。 $1 \le x,y \le 1000,1 \le a,b \le 2\times 10^9,a \le b$。

题目描述

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 $ 1 $ , $ 2 $ , $ 3 $ and so on. Iahub has the following scheme of painting: he skips $ x-1 $ consecutive bricks, then he paints the $ x $ -th one. That is, he'll paint bricks $ x $ , $ 2·x $ , $ 3·x $ and so on red. Similarly, Floyd skips $ y-1 $ consecutive bricks, then he paints the $ y $ -th one. Hence he'll paint bricks $ y $ , $ 2·y $ , $ 3·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 $ a $ and Floyd has a lucky number $ b $ . Boys wonder how many bricks numbered no less than $ a $ and no greater than $ b $ 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: $ x $ , $ y $ , $ a $ , $ b $ . ( $ 1<=x,y<=1000 $ , $ 1<=a,b<=2·10^{9} $ , $ a<=b $ ).

输出格式


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

输入输出样例

输入样例 #1

2 3 6 18

输出样例 #1

3

说明

Let's look at the bricks from $ a $ to $ b $ $ (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.

Input

题意翻译

给定 $x,y,a,b,$ 求在 $a$ 到 $b$ 之间(包含 $a$ 和 $b$)有多少个 $x$ 和 $y$ 的公倍数。 $1 \le x,y \le 1000,1 \le a,b \le 2\times 10^9,a \le b$。

加入题单

算法标签: