0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 04:25:25 +00:00
OI-codes/Luogu/P1116/P1116.cpp

26 lines
483 B
C++

// R38788162
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, a[10005], ans = 0;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < n; i++) {
for (int j = 1; j < n; j++) {
if (a[j] < a[j - 1]) {
a[j] ^= a[j - 1];
a[j - 1] ^= a[j];
a[j] ^= a[j - 1];
ans++;
}
}
}
cout << ans << endl;
return 0;
}