# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
465973 |
2021-08-17T12:59:29 Z |
fuad27 |
Exam (eJOI20_exam) |
C++17 |
|
18 ms |
592 KB |
#include<bits/stdc++.h>
using namespace std;
#define int long long
int32_t main () {
int n;
cin >> n;
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];
int len = 0, check = false, ans = 0;
for(int i = 0;i<n;i++) {
if(a[i] > b[i]) {
if(check) {
ans+=len;
}
check = false;
len = 0;
}
else {
len++;
if(a[i] == b[i])check = true;
}
}
cout<<ans<<endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 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 |
18 ms |
592 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 |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |