Accepted
Code
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main(){
ll n, a, ans = 0, sum = 0;
cin >> n;
//vector<ll> a(n);
for (int i = 0; i < n; i++){
cin >> a;
sum += a;
if (sum % 2 == 0){
ans++;
sum = 0;
}
}
if (sum) cout << -1 << endl;
else cout << ans << endl;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1042 Array partition
- Contest
- TLE_Headquarters - round #1
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-27 16:23:36
- Judged At
- 2024-11-11 03:38:57
- Judged By
- Score
- 100
- Total Time
- 32ms
- Peak Memory
- 540.0 KiB