# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
465979 |
2021-08-17T13:06:41 Z |
fuad27 |
Exam (eJOI20_exam) |
C++17 |
|
17 ms |
596 KB |
#include<bits/stdc++.h>
using namespace std;
#define int long long
int32_t main () {
long long n;
cin >> n;
long long a[n], b[n];
for(int i = 0;i<n;i++)cin>>a[i];
for(int i =0;i<n;i++)cin>>b[i];
long long len = 0;
bool check = false;
long long ans = 0;
for(int i = 0;i<n;i++) {
if(a[i] > b[i]) {
if(check) {
ans+=len;
}
check = false;
len = 0;
}
else if(a[i] <= b[i]){
if(a[i] == b[i])check = true;
len++;
}
}
cout<<ans<<'\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Incorrect |
17 ms |
596 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
356 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |