Runtime Error
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;
int summ = 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(odd%even ==0)
{
odd-= odd/even;
}
if(even>0 && odd==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 18:28:51
- Judged At
- 2024-11-11 03:37:08
- Judged By
- Score
- 0
- Total Time
- 2ms
- Peak Memory
- 544.0 KiB