eolymp
bolt
Try our new interface for solving problems
Problems

Its a Murder!

Its a Murder!

Once detective Saikat was solving a murder case. While going to the crime scene he took the stairs and saw that a number is written on every stair. He found it suspicious and decides to remember all the numbers that he has seen till now. While remembering the numbers he found that he can find some pattern in those numbers. So he decides that for each number on the stairs he will note down the sum of all the numbers previously seen on the stairs which are smaller than the present number. Calculate the sum of all the numbers written on his notes diary.

Input

First line gives the number of test cases $t$ ($t$$10$). $2t$ lines follow. First line gives the number of stairs $n$ ($1$$n$$10^5$). Next line gives $n$ numbers written on the stairs. All numbers will be between $0$ and $10^6$.

Output

For each test case print the final sum in a separate line.

Time limit 1 second
Memory limit 128 MiB
Input example #1
1
5
1 5 3 6 4
Output example #1
15