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

cf 485A

时间:2014-11-16 11:59:33      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:io   os   sp   bs   amp   nbsp   c   ios   algorithm   

#include<iostream>

#include<cstdio>

#include<cstring>

#include<string>

#include<cstdlib>

#include<cmath>

#include<algorithm>

#include<queue>

#include<vector>

#include<set>

using namespace std;

int a,m;

bool flag[100010]={0};

int main()

{

    while(scanf("%d%d",&a,&m)!=EOF)

    {

        int f=1;

        flag[a]=1;

        while(f==1)

        {

            a=(a+a%m)%m;

            if(a==0) break;

            else

            {

                if(flag[a]==0)

                    flag[a]=1;

                else

                    f=0;

            }

        }

        if(f)

            printf("Yes");

        else

            printf("No");

    }

    return 0;

}

cf 485A

标签:io   os   sp   bs   amp   nbsp   c   ios   algorithm   

原文地址:http://www.cnblogs.com/a972290869/p/4101134.html

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