#include #define rep(i,n) for(int i=(0);i<(n);i++) using namespace std; typedef long long ll; int n, sm; vector a; bool cond(int x){ if(sm % x != 0) return false; int tar = sm / x; int t = 0; rep(i, n){ t += a[i]; if(t > tar) return false; if(t == tar) t = 0; } return true; } int main(){ cin.tie(0); ios::sync_with_stdio(false); cin >> n; a.resize(n); rep(i, n) { cin >> a[i]; sm += a[i]; } for(int i = n; i >= 1; i--){ if(cond(i)){ cout << i << endl; return 0; } } }