# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
771961 |
2023-07-03T12:51:03 Z |
cnastea |
Exam (eJOI20_exam) |
C++14 |
|
3 ms |
340 KB |
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
vector<int> a(n), b(n);
for(int i = 0; i < n; i++){
cin >> a[i];
}
for(int i = 0; i < n; i++){
cin >> b[i];
}
bool r[n];
for(int i = 0; i < n; i++){
if(a[i] == b[0]){
r[i] = 1;
int j = i;
while(a[i] > a[j-1] && j > 0){
j--;
r[j] = 1;
}
j = i;
while(a[i] > a[j+1] && j < n-1){
j++;
r[j] = 1;
}
}
}
int k = 0;
for(int i = 0; i < n; i++){
if(r[i] == 1) k++;
}
cout << k;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |