#include using namespace std; int main(){ int n; cin>>n; int gcdv=0,x; while(n--){ cin>>x; gcdv=__gcd(gcdv,x); } cout<<100/gcdv<