#abc100c. [abc100_c]*3 or /2
[abc100_c]*3 or /2
Problem Statement
As AtCoder Beginner Contest 100 is taking place, the office of AtCoder, Inc. is decorated with a sequence of length , {}.
Snuke, an employee, would like to play with this sequence.
Specifically, he would like to repeat the following operation as many times as possible:
For every satisfying , perform one of the following: "divide by " and "multiply by ".
Here, choosing "multiply by " for every is not allowed, and the value of after the operation must be an integer.
At most how many operations can be performed?
Constraints
- is an integer between and (inclusive).
- is an integer between and (inclusive).
Input
Input is given from Standard Input in the following format:
Output
Print the maximum number of operations that Snuke can perform.
Sample Input 1
3
5 2 4
Sample Output 1
3
The sequence is initially . Three operations can be performed as follows:
- First, multiply by , multiply by and divide by . The sequence is now .
- Next, multiply by , divide by and multiply by . The sequence is now .
- Finally, multiply by , multiply by and divide by . The sequence is now .
Sample Input 2
4
631 577 243 199
Sample Output 2
0
No operation can be performed since all the elements are odd. Thus, the answer is .
Sample Input 3
10
2184 2126 1721 1800 1024 2528 3360 1945 1280 1776
Sample Output 3
39