답안 #570189

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
570189 2022-05-28T20:11:16 Z juliocesar97 Mountains (NOI20_mountains) C++14
0 / 100
2000 ms 2516 KB
/*
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;

int 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;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Execution timed out 2092 ms 2516 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2076 ms 2516 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2076 ms 2516 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2076 ms 2516 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Execution timed out 2092 ms 2516 KB Time limit exceeded
3 Halted 0 ms 0 KB -