Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n ;
int arr[n];
for (int i = 0; i < n; ++i) {
cin >> arr[i];
}
int even = 0;
int odd =0;
for(int i=0; i<n; i++)
{
if(arr[i]%2==0){
even++;
odd = 0;
}
else{
odd++;
if(odd==2)
{
even++;
odd = 0;
}
}
}
if(even>0){
cout<<even<<endl;
}
else{
cout<<-1<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1042 Array partition
- Contest
- TLE_Headquarters - round #1
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-27 17:50:14
- Judged At
- 2024-11-11 03:37:24
- Judged By
- Score
- 30
- Total Time
- 1ms
- Peak Memory
- 520.0 KiB