#include #include using namespace std; template struct BIT{//1_Indexed int n; vector bit; BIT(int n_):n(n_+1),bit(n,0){} T sum(int a){ int ret = 0; for(int i = a; i > 0; i -= i & -i) ret += bit[i]; return ret; } void add(int a,int w){ for(int i = a; i <= n; i += i & -i)bit[i] += w; } T query(int l,int r){ return sum(l-1)-sum(r-1); } }; int main(){ int n;cin>>n; BIT a(n+1); int ans = 0; for(int i = 0; n > i; i++){ int t;cin>>t; a.add(t,1); ans += i-a.sum(t-1); } cout << ans << endl; }