class FenwickTree: def __init__(self, size): self.n = size self.tree = [0] * (self.n + 1) # 1-based indexing. def update(self, idx, delta=1): while idx <= self.n: self.tree[idx] += delta idx += idx & -idx def query(self, idx): res = 0 while idx > 0: res += self.tree[idx] idx -= idx & -idx return res def main(): import sys input = sys.stdin.read().split() n = int(input[0]) p = list(map(int, input[1:n+1])) ft = FenwickTree(n) current_fact = 1 total = 0 for i in range(n-1, -1, -1): x = p[i] m = ft.query(x - 1) total += m * current_fact ft.update(x) current_fact *= (n - i) print(total + 1) if __name__ == "__main__": main()