单点时限: 4.0 sec
内存限制: 256 MB
You want to process a sequence of $n$ distinct integers by swapping two adjacent sequence elements until the sequence is sorted in ascending order.
There are several test cases, please process till EOF.
For each test case, the first line contains integer $n$ $(1 \leq n \leq 10^5)$. The second line contains $n$ space-separated integers $a_1, a_2, \ldots, a_n$ $(1 \leq a_i \leq 10^9)$.
For each test case, output the minimum times of swapping in one line.
2 1 2
0