Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
52857 | gzlinzy | 木薯与身高 | C++ | 解答错误 | 30 | 104 MS | 4176 KB | 298 | 2022-07-20 12:04:18 |
#include<bits/stdc++.h> using namespace std; int n,a[1000006],sum; int main(){ ios::sync_with_stdio(false); cin.tie(0);cout.tie(0); cin>>n; for(int i=1;i<=n;i++)cin>>a[i]; for(int i=2;i<=n;i++) for(int j=1;j<i;j++) if(a[i]<a[j]){ sum+=i-j; break; } cout<<sum; }