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
2014-01-05 20:50:02 Vipul Pandey
remember "sum of all the numbers previously seen on the stairs which are smaller than the present number" and not smaller or equal.Equal costed me a WA. But still it is a nice one!
2013-09-21 11:13:31 Ouditchya Sinha
A lot of server instability. Using unsigned long long is faster than long long. Can anyone explain please? :)
2013-08-02 10:19:28 P_Quantum
nice one...!!
2013-06-11 11:59:42 Abhinav Aggarwal
Nice question! :)
2013-04-16 18:51:28 Lakshay Singhal
getting NZEC....running well on ideone and other compiler
2013-04-01 09:46:13 Ivan Nikulin
I somehow managed to assume that all the numbers are different (: Therefore, HINT: numbers might NOT be DISTINCT!
2013-06-18 14:56:49 Pranshul Agarwal
Nice problem. Learnt a lot from this.. :)
2012-12-17 18:35:31 Surya kiran
ABHISHEK +1 for you
2012-12-17 12:49:30 Abhishek
All numbers will be between 0 and 10^6.??
input cases contain 0 also. caused 2 TLEs :(
2012-09-27 04:48:22 (Tjandra Satria Gunawan)(曾毅昆)
finally, got AC in 0.26sec. :-)
use long long, if not will getting WA.

Last edit: 2012-09-27 09:34:53
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.