Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
52744 | Ryan123 | 木薯与身高 | C++ | 通过 | 100 | 104 MS | 8080 KB | 490 | 2022-07-20 11:51:38 |
#include <bits/stdc++.h> using namespace std; typedef long long ll; ll n,sum,Max,pos; ll num[1000005]; int main() { // freopen("abc.txt","r",stdin); // freopen("acb.txt","w",stdout); ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); cin>>n; for(int i=1,x; i<=n; i++) { cin>>num[i]; pos=i; for(int j=1; j<=i-1; j++) if(num[j]>num[i]) { pos=j; break; } sum+=i-pos; } cout<<sum<<'\n'; return 0; }