#include using namespace std; #pragma GCC optimize("O3") #define rep(i,n) for(ll i=0;i=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define ins insert #define pqueue(x) priority_queue,greater> #define all(x) (x).begin(),(x).end() #define CST(x) cout<; using vvl=vector>; using pl=pair; using vpl=vector; using vvpl=vector; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[9]={1,0,-1,0,1,1,-1,-1,0}; const ll dx[9]={0,1,0,-1,1,-1,1,-1,0}; template inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } bool PreGarner(vector &b,vector &m){ long long res=1; for(int i=0;i Garner(vector b,vector m,long long MOD){//{解,lcm(mod)} m.emplace_back(MOD); long long l=1; vector coeffs(m.size(),1); vector constants(m.size(),0); for(int k=0;k> n; vl b(n),m(n); rep(i,n){ cin >> b[i] >> m[i]; } auto f=PreGarner(b,m); if(f==false){ cout << -1 << endl;return 0; } auto [x,l]=Garner(b,m,MOD); if(x==0)x+=l; cout << x << endl; }