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

hide comments
rajeev_899: 2017-06-22 14:40:11

Double Century :) :) :) :)

siddharth_0196: 2017-06-10 16:27:23

O(nlog(max_element)) -> TLE
O(nlogn) -> AC

imperfectboy: 2017-06-08 18:40:55

long long cost me 2WA !!!

nky_007: 2017-05-30 06:23:27

Easy one using merge sort.

sourav15102: 2017-05-29 19:13:24

Why am I getting TLE for using Binary search tree in this problem?

shubham: 2017-05-26 17:02:18

easy BIT concept. If u find it difficult solve INVCNT using BIT first. :)

v_ns: 2017-04-01 08:06:30

Think of using merge sort.

hasan356: 2017-03-22 13:12:57

Beaware of zero !!

shahzada: 2017-03-21 19:44:04

easy one ;)

Rakend Chauhan: 2016-11-24 23:38:04

dont you think the question is misleading
" All numbers will be between 0 and 10^6 "
it should be between and equal to 0 and 10^6.

Last edit: 2016-11-24 23:40:51

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