#34006: ans


yp11151049@yphs.tp.edu.tw (801-24)

學校 : 臺北市私立延平高級中學
編號 : 197224
來源 : [203.72.178.1]
最後登入時間 :
2024-01-16 09:26:24
f070. 1. 韓信點兵 (HanXin) -- 2020年5月TOI練習賽新手組 | From: [203.72.178.1] | 發表日期 : 2023-02-23 17:26

#include<bits/stdc++.h>
using namespace std;
int main(){
    int a1,b1,a2,b2,a3,b3;
    cin>>a1>>b1>>a2>>b2>>a3>>b3;
    int ans=1;
    while(true){
        if(ans%a1==b1 && ans%a2==b2 && ans%a3==b3){
            cout<<ans<<endl;
            return 0;
        }
        ans++;
    }
}

 
ZeroJudge Forum