100 atcoder#ABC159A. [ABC159A] The Number of Even Pairs
[ABC159A] The Number of Even Pairs
Score : points
Problem Statement
We have balls, each of which has an integer written on it. It is known that:
- The numbers written on of the balls are even.
- The numbers written on of the balls are odd.
Find the number of ways to choose two of the balls (disregarding order) so that the sum of the numbers written on them is even. It can be shown that this count does not depend on the actual values written on the balls.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
2 1
1
For example, let us assume that the numbers written on the three balls are .
- If we choose the two balls with and , the sum is odd;
- If we choose the two balls with and , the sum is odd;
- If we choose the two balls with and , the sum is even.
Thus, the answer is .
4 3
9
1 1
0
13 3
81
0 3
3