D - FizzBuzz Sum Hard Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 400400

問題文

11 以上 NN 以下の整数であって、AA の倍数でも BB の倍数でもないものの総和を求めてください。

制約

  • 1N,A,B1091 \leq N, A,B \leq 10^9
  • 入力は全て整数

入力

入力は以下の形式で標準入力から与えられる。

NN AA BB

出力

答えを出力せよ。


入力例 1Copy

Copy
10 3 5

出力例 1Copy

Copy
22

11 以上 1010 以下の整数で 33 の倍数でも 55 の倍数でもないのは 1,2,4,7,81,2,4,7,8 です。それらの総和は 1+2+4+7+8=221+2+4+7+8 =22 です。


入力例 2Copy

Copy
1000000000 314 159

出力例 2Copy

Copy
495273003954006262

Score : 400400 points

Problem Statement

Find the sum of integers between 11 and NN (inclusive) that are not multiples of AA or BB.

Constraints

  • 1N,A,B1091 \leq N, A,B \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN AA BB

Output

Print the answer.


Sample Input 1Copy

Copy
10 3 5

Sample Output 1Copy

Copy
22

The integers between 11 and 1010 (inclusive) that are not multiples of 33 or 55 are 1,2,4,71,2,4,7, and 88, whose sum is 1+2+4+7+8=221+2+4+7+8 =22.


Sample Input 2Copy

Copy
1000000000 314 159

Sample Output 2Copy

Copy
495273003954006262


2025-04-05 (Sat)
03:28:48 +00:00