#include <bits/stdc++.h>
#define int long long
using namespace std;
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin >> n;
vector<int> v(n);
for(int i=0;i<n;i++){
cin >> v[i];
}
int ans=1;
for(int i=1;i<n;i++){
if(v[i]<=v[i-1])continue;
ans++;
}
cout << ans << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
4 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
5 |
Incorrect |
40 ms |
6480 KB |
Output isn't correct |
6 |
Incorrect |
41 ms |
7248 KB |
Output isn't correct |
7 |
Incorrect |
34 ms |
6136 KB |
Output isn't correct |
8 |
Incorrect |
33 ms |
5968 KB |
Output isn't correct |
9 |
Incorrect |
38 ms |
6224 KB |
Output isn't correct |
10 |
Incorrect |
36 ms |
6480 KB |
Output isn't correct |