본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 8912번 Sales

by 현장 2023. 6. 4.

-Code

for _ in range(int(input())):
    n = int(input())
    sell_list = list(map(int, input().split()))
    res = 0
    for i in range(n):
        for j in range(i):
            if sell_list[j] <= sell_list[i]:
                res += 1
    print(res)