码迷,mamicode.com
首页 > 其他好文 > 详细

[Poj1006]生理周期 (中国剩余定理)

时间:2018-10-11 21:45:29      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   ase   int   std   代码   ret   ace   mes   stream   

蒟蒻并不会中国剩余定理

交的时候还出现了PE的错误

下面是AC代码

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    int p,e,i,d,T=1;
    cin>>p>>e>>i>>d;
    do{
        int lcm=21252;
        int ans=(5544*p+14421*e+1288*i-d+lcm)%lcm;
        if(ans==0) ans=lcm;
        cout<<"Case "<<T++<<": the next triple peak occurs in "<<ans<<" days."<<endl;
        cin>>p>>e>>i>>d;
    }while(p!=-1);
    return 0;
}

本蒟蒻并不知道这个代码是什么意思

本蒟蒻太弱了

[Poj1006]生理周期 (中国剩余定理)

标签:style   ase   int   std   代码   ret   ace   mes   stream   

原文地址:https://www.cnblogs.com/fsy2017/p/9774524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!