#abc100c. C - *3 or /2

C - *3 or /2

Score: 300300 points

问题描述

当 AtCoder 初级比赛第100场正在进行时,AtCoder, Inc. 的办公室被一个长度为 NN 的序列 $a = ${$a_1, a_2, a_3, ..., a_N$} 装饰着。
Snuke,一名员工,想要玩弄这个序列。

具体来说,他想尽可能多地重复以下操作:

对于满足 $1 \leq i \leq N$ 的每一个 $i$,执行以下之一:“将 $a_i$ 除以 $2$”和“将 $a_i$ 乘以 $3$”。  
这里,不允许对每一个 $i$ 都选择“将 $a_i$ 乘以 $3$”,且操作后 $a_i$ 的值必须是整数。

最多可以进行多少次操作?

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

As AtCoder Beginner Contest 100 is taking place, the office of AtCoder, Inc. is decorated with a sequence of length NN, a=a = {a1,a2,a3,...,aNa_1, a_2, a_3, ..., a_N}.
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 $i$ satisfying $1 \leq i \leq N$, perform one of the following: "divide $a_i$ by $2$" and "multiply $a_i$ by $3$".  
Here, choosing "multiply $a_i$ by $3$" for every $i$ is not allowed, and the value of $a_i$ after the operation must be an integer.

At most how many operations can be performed?

Constraints

  • NN is an integer between 11 and 10 00010 \ 000 (inclusive).
  • aia_i is an integer between 11 and 1 000 000 0001 \ 000 \ 000 \ 000 (inclusive).

Input

Input is given from Standard Input in the following format:

NN

a1a_1 a2a_2 a3a_3 ...... aNa_N

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 5,2,4{5, 2, 4}. Three operations can be performed as follows:

  • First, multiply a1a_1 by 33, multiply a2a_2 by 33 and divide a3a_3 by 22. The sequence is now 15,6,2{15, 6, 2}.
  • Next, multiply a1a_1 by 33, divide a2a_2 by 22 and multiply a3a_3 by 33. The sequence is now 45,3,6{45, 3, 6}.
  • Finally, multiply a1a_1 by 33, multiply a2a_2 by 33 and divide a3a_3 by 22. The sequence is now 135,9,3{135, 9, 3}.

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 00.

Sample Input 3

10
2184 2126 1721 1800 1024 2528 3360 1945 1280 1776

Sample Output 3

39

update @ 2024/3/10 17:18:39

}