|
||||||||||
MutipleTime Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1209 Accepted Submission(s): 712 Problem Description WLD likes playing with a sequence $a[1..N]$. One day he is playing with a sequence of $N$ integers. For every index i, WLD wants to find the smallest index $F(i)$ ( if exists ), that $i < F(i) \leq n$, and $a_F(i)$ mod $a_i$ = 0. If there is no such an index $F(i)$, we set $F(i)$ as 0. Input There are Multiple Cases.(At MOST $10$) For each case: The first line contains one integers $N (1 \leq N \leq 10000)$. The second line contains $N$ integers $a1,a2,...,aN(1 \leq ai \leq 10000)$,denoting the sequence WLD plays with. You can assume that all ai is distinct. Output For each case: Print one integer.It denotes the sum of all $F(i)$ for all $1 \leq i < n$ Sample Input
Sample Output
Hint F(1)=2 F(2)=0 F(3)=4 F(4)=0 Source | ||||||||||
|