Preparando MOJI

Joty and Chocolate

1000ms 262144K

Description:

Little Joty has got a task to do. She has a line of n tiles indexed from 1 to n. She has to paint them in a strange pattern.

An unpainted tile should be painted Red if it's index is divisible by a and an unpainted tile should be painted Blue if it's index is divisible by b. So the tile with the number divisible by a and b can be either painted Red or Blue.

After her painting is done, she will get p chocolates for each tile that is painted Red and q chocolates for each tile that is painted Blue.

Note that she can paint tiles in any order she wants.

Given the required information, find the maximum number of chocolates Joty can get.

Input:

The only line contains five integers n, a, b, p and q (1 ≤ n, a, b, p, q ≤ 109).

Output:

Print the only integer s — the maximum number of chocolates Joty can get.

Note that the answer can be too large, so you should use 64-bit integer type to store it. In C++ you can use the long long integer type and in Java you can use long integer type.

Sample Input:

5 2 3 12 15

Sample Output:

39

Sample Input:

20 2 3 3 5

Sample Output:

51

Informação

Codeforces

Provedor Codeforces

Código CF678C

Tags

implementationmathnumber theory

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:06:39

Relacionados

Nada ainda