D - FizzBuzz Sum Hard
Editorial
/


Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
以上 以下の整数であって、 の倍数でも の倍数でもないものの総和を求めてください。
制約
- 入力は全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
Copy
10 3 5
出力例 1Copy
Copy
22
以上 以下の整数で の倍数でも の倍数でもないのは です。それらの総和は です。
入力例 2Copy
Copy
1000000000 314 159
出力例 2Copy
Copy
495273003954006262
Score : points
Problem Statement
Find the sum of integers between and (inclusive) that are not multiples of or .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
Copy
10 3 5
Sample Output 1Copy
Copy
22
The integers between and (inclusive) that are not multiples of or are , and , whose sum is .
Sample Input 2Copy
Copy
1000000000 314 159
Sample Output 2Copy
Copy
495273003954006262