

Time Limit: 2 sec / Memory Limit: 256 MB
Score : points
Problem Statement
You are given two integers and .
Three variable and takes integer values satisfying .
How many different assignments of values to and are there such that ?
Constraints
- and are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the number of the triples of and that satisfy the condition.
Sample Input 1Copy
2 2
Sample Output 1Copy
6
There are six triples of and that satisfy the condition:
Sample Input 2Copy
5 15
Sample Output 2Copy
1
The maximum value of is , achieved by one triple of and .
配点 : 点
問題文
つの整数 が与えられます。
つの変数 があり、 を満たす整数の値を取ります。
を満たす への値の割り当ては何通りありますか。
制約
- は整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
問題文の条件を満たす の組が何通りあるか出力せよ。
入力例 1Copy
2 2
出力例 1Copy
6
問題文の条件を満たす の組は以下の 通りです。
入力例 2Copy
5 15
出力例 2Copy
1
の最大値は であり、それを満たす組は 通りです。