fork download
  1. #include<bits/stdc++.h>
  2. #define faster ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
  3. #define ll long long
  4. using namespace std;
  5. int main()
  6. {
  7. faster
  8. string s;
  9. ll n,i,d=0;
  10. cin>>n;
  11. ll t=0;
  12. vector<ll> a(n+1),f(2,0);
  13. for(i=1;i<=n;i++)
  14. {
  15. cin>>s;
  16. a[i]=s[s.size()-1]-'0';
  17. }
  18. f[0]=1;
  19. for(i=1;i<=n;i++)
  20. {
  21. t+=a[i];
  22. t%=2;
  23. d+=f[t];
  24. f[t]++;
  25. }
  26. cout<<d;
  27. return 0;
  28. }
Success #stdin #stdout 0s 5288KB
stdin
6
1 2 3 4 5 6
stdout
9