# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
576578 |
2022-06-13T08:10:58 Z |
vqpahmad |
Exam (eJOI20_exam) |
C++14 |
|
1 ms |
340 KB |
#include <bits/stdc++.h>
#define ll long long
#define endl '\n'
#define all(a) a.begin(),a.end()
#define mod (ll)(10000007)
using namespace std;
const int mx = 1e6 + 15;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
vector<pair<int,int>> ab(n);
bool flag = 1;
bool ans = 0;
for (int i=0;i<n;i++){
cin >> ab[i].first;
}
for (int i=0;i<n;i++){
cin >> ab[i].second;
if (i){
if (ab[i-1].second!=ab[i].second) flag = 0;
}
}
for (int i=0;i<n;i++){
if (ab[i].first==ab[i].second) ans = 1;
}
if (flag&&ans) {
int cnt =0;
for (int i=0;i<n;i++){
if (ab[i].first<=ab[i].second)cnt++;
}
cout << cnt ;
}
else cout << 0 << endl;
}
# |
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 |
1 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 |
- |