DCEPC206 - 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 T, number of test cases.

2T lines follow.

First line gives you the number of stairs N

Next line gives you N numbers written on the stairs.

Output

For each test case output one line giving the final sum for each test case.

Constraints

T<=10

1<=N<=10^5

All numbers will be between 0 and 10^6.

Example

Input:
1
5
1 5 3 6 4

Output: 15

Added by:dce coders
Date:2012-02-26
Time limit:1.259s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Own Problem

hide comments
2015-04-02 11:40:28 Madhav
good question!!
2015-02-19 21:10:30 abhijeet gusain
@Gaurav necessary test cases are already given ... it may be that ur code has some input issues ...
2014-12-28 05:39:28 Gaurav sharma
I'm getting wrong ans... plz give me d special test case..
2014-12-06 19:06:46 vivek
After one TLE accepted B|
2014-09-18 12:35:21 Giribalaji
Can someone please explain the given test-case? I am stuck there itself ..
2014-08-08 18:16:53 ||N0VICE||
Nice prblm :)
2014-07-24 22:17:00 Narendra yadav
Is it solvable in O(n) ?
Solved it using BIT. But my silly mistakes cost me many WA.
2014-07-01 08:47:35 785227
Beware of overflows. To avoid that, use long long throughout your code :)
2014-07-01 08:38:22 785227
Handle the overflows during multiplication. Lots of WAs because of that
2014-05-27 07:41:09 monera
My 50th :D
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.