#include <bits/stdc++.h>
#define int long long
using namespace std;
int b[1000001];
int cnt[1000001];
signed main()
{
int n;
cin >> n;
int a[n];
for(int i=0; i < n; i++)cin>>a[i];
for(int i=n-1; i >= 0;i--){
cnt[a[i]]++;
b[i]=cnt[a[i]-1];
}
int rez=0;
for(int i=0; i < n; i++){
if(b[i]==0)rez++;
}
cout<<rez;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
2 |
Incorrect |
1 ms |
2508 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
4 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
5 |
Incorrect |
132 ms |
14676 KB |
Output isn't correct |
6 |
Incorrect |
140 ms |
15792 KB |
Output isn't correct |
7 |
Incorrect |
106 ms |
14164 KB |
Output isn't correct |
8 |
Incorrect |
105 ms |
14272 KB |
Output isn't correct |
9 |
Incorrect |
118 ms |
14572 KB |
Output isn't correct |
10 |
Incorrect |
172 ms |
14672 KB |
Output isn't correct |