제출 #570188

#제출 시각아이디문제언어결과실행 시간메모리
570188juliocesar97Mountains (NOI20_mountains)C++14
컴파일 에러
0 ms0 KiB
/*
y = station
x and y = reciving stations
order = x.y.z
x and z shorter than mountain y
*/

#include <bits/stdc++.h>
using namespace std;

long long main(){
long long n;
long long cont1=0;
long long cont2=0;
long long ans1=0;
long long ans2 = 0;
cin>>n;
long long v[n];

for(int i=0; i<n; i++){
cin>>v[i];
}




for(int i=1; i<n; i++){



for(int j=0; j<i; j++){
if(v[i] > v[j]){
cont1 += 1;	}
}
for(int k=n; k>i; k--){
if(v[i] > v[k]){
cont2 +=1;	
ans1 = cont1*cont2;}
}


ans2 += ans1;



cont1 =0; 
cont2=0;
ans1=0;

}

//cout<<"program compiled, output: "<<ans2;
cout<<ans2;






return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

cc1plus: error: '::main' must return 'int'