QOJ.ac

QOJ

Time Limit: 1 s Memory Limit: 1024 MB Total points: 100

#3697. Carries

Statistics

frog has $n$ integers $a_1, a_2, \dots, a_n$, and she wants to add them pairwise.

Unfortunately, frog is somehow afraid of carries (进位). She defines hardness $h(x, y)$ for adding $x$ and $y$ the number of carries involved in the calculation. For example, $h(1, 9) = 1, h(1, 99) = 2$.

Find the total hardness adding $n$ integers pairwise. In another word, find $$\sum_{1 \leq i < j \leq n} h(a_i, a_j)$$.

Input

The input consists of multiple tests. For each test:

The first line contains $1$ integer $n$ ($2 \leq n \leq 10^5$). The second line contains $n$ integers $a_1, a_2, \dots, a_n$. ($0 \leq a_i \leq 10^9$).

Output

For each test, write $1$ integer which denotes the total hardness.

Sample Input

2
5 5
10
0 1 2 3 4 5 6 7 8 9

Sample Output

1
20

Discussions

About Discussions

The discussion section is only for posting: Editorials, General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues. Submitting multiple issues may cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.