1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| #include<iostream> using namespace std; int main(){ bool light[2000001]={0}; int t,n; long long T; double a; cin>>n; for(int i=1;i<=n;i++){ cin>>a>>t; for(int o=1;o<=t;o++){ T=a*o; if(light[T]==false){ light[T]=true; }else light[T]=false; } } for(int i=1;;i++){ if(light[i]==true){ cout<<i<<endl; break; } } return 0; }
|