#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<pair<int,bool>> v(n);
for(int i=0;i<n;i++){
cin >> v[i].first;
v[i].second=false;
}
int ans=1;
int res,resi;
for(int i=0;i<n;i++){
for(int j=i;j<n;j++){
if(v[j].second==false){
res=v[j].first-1;
v[j].second=true;
resi=j;
break;
}
cout << ans << endl;
return 0;
}
for(int j=resi+1;j<n;j++){
if(v[j].first==res && v[j].second==false){
res--;
v[j].second=true;
}
}
ans++;
}
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 |
70 ms |
12792 KB |
Output isn't correct |
6 |
Incorrect |
56 ms |
14160 KB |
Output isn't correct |
7 |
Incorrect |
70 ms |
11856 KB |
Output isn't correct |
8 |
Incorrect |
50 ms |
11600 KB |
Output isn't correct |
9 |
Incorrect |
55 ms |
12368 KB |
Output isn't correct |
10 |
Incorrect |
48 ms |
12696 KB |
Output isn't correct |