比赛 EYOI暨SBOI暑假快乐赛2nd 评测结果 WAAAAWAAAA
题目名称 曹冲养猪 最终得分 80
用户昵称 ┭┮﹏┭┮ 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2022-06-26 08:42:48
显示代码纯文本
#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 = a[1] + b[1];
    for(int i = 2;i <= n;i++){
        while((s - b[i]) % a[i]){
            s += ss;
        }
        ss *= a[i];
    }
    cout<<s<<endl;
    
    return 0;
}