#include using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair P; int main(){ int n; cin >> n; vector cum(n+1,0); rep(i,n) { int a; cin >> a; cum[i+1] = cum[i] + a; } int res = 0; for (int i = 1; i <= n; i++) { int x = cum[i]; int y = cum[n] - cum[i]; if (y % x != 0) continue; res = max(res, y / x + 1); } cout << res << endl; return 0; }