#include using namespace std; #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) #define bit(n,k) (((ll)n>>(ll)k)&1) /*nのk bit目*/ #define pb push_back #define pf push_front #define fi first #define se second #define eb emplace_back #define endl '\n' #define SZ(x) ((int)(x).size()) #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() typedef long long ll; typedef vector vl; const ll MOD=1000000007LL; templatebool chmax(T &a,const T &b){if(a 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } //約数の列挙O(√n) vectordivisor(ll n){ vectorres; for(ll i=1;i*i<=n;i++){ if(n%i==0){ res.push_back(i); if(i != n/i) res.push_back(n/i); } } return res; } ll A_mod_B_Problem(ll n,vl a,vl l,ll b){ reverse(all(a)),reverse(all(l)); ll cur=1; ll ans=0; vl two(50); two[0]=1; rep(j,49)two[j+1]=two[j]*2; rep(i,n){ string s=to_string(a[i]); vl vec(50); vec[0]=a[i]%b; rep(j,49)vec[j+1]=vec[j]*(modpow(10,two[j]*s.size(),b)+1)%b; ll res=0; rep(j,50){ if(bit(l[i],j)){ res=vec[j]; ans+=res*cur%b; ans%=b; cur*=modpow(10,two[j]*s.size(),b); cur%=b; } } } return ans; } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); cout << fixed << setprecision(13); /*--------------------------------*/ int n;cin>>n; vectorc(10); mapmp; vl a(10); for(int i=1;i<=9;i++){ cin>>c[i]; a[i]=i; if(c[i]>0)mp[i]; } int g=0; for(auto p:mp){ for(auto q:mp){ if(p.fi>=q.fi){ g=__gcd(g,9*(p.fi-q.fi)); } } } if(g==0){ cout<vec=divisor(g); int ans=0; for(auto x:vec){ if(A_mod_B_Problem(11,a,c,x)==0)chmax(ans,(int)x); } cout<