记录编号 571934 评测结果 AAAAAAAAAA
题目名称 曹冲养猪 最终得分 100
用户昵称 Gravatar┭┮﹏┭┮ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2022-06-26 14:52:07 内存使用 0.00 MiB
显示代码纯文本
#include <bits/stdc++.h> 
using namespace std;
const int N = 0;
int n;
int a[20],b[20];
unsigned long long s,ss;
int main(){
    freopen("ccyz.in","r",stdin);
    freopen("ccyz.out","w",stdout);
    scanf("%d",&n);
    for(int i = 1;i <= n;i++){
        scanf("%d%d",&a[i],&b[i]);
    }
    ss = a[1];
    s = b[1];
    for(int i = 2;i <= n;i++){
        while((s - b[i]) % a[i] || s < b[i]){
            s += ss;
        }
        ss *= a[i];
    }
    cout<<s<<endl;
    
    return 0;
}