zoukankan      html  css  js  c++  java
  • Factory

    One industrial factory is reforming working plan. The director suggested to set a mythical detail production norm. If at the beginning of the day there were x details in the factory storage, then by the end of the day the factory has to produce (remainder after dividing x by m) more details. Unfortunately, no customer has ever bought any mythical detail, so all the details produced stay on the factory.

    The board of directors are worried that the production by the given plan may eventually stop (that means that there will be а moment when the current number of details on the factory is divisible by m).

    Given the number of details a on the first day and number m check if the production stops at some moment.

    Input

    The first line contains two integers a and m (1 ≤ a, m ≤ 105).

    Output

    Print "Yes" (without quotes) if the production will eventually stop, otherwise print "No".

    Examples

    Input
    1 5
    Output
    No
    Input
    3 6
    Output
    Yes

    此题就是给你a,m。每天进行a = a+(a%m)操作。让你判断,如果最终a不能被m整除,输出No,否则输出yes。
    代码如下
    #include<cstdio>
    #include<iostream>
    #include<algorithm>
    #include<cstring>
    using namespace std;
    bool vis[100010];
    int a,m;
    int main()
    {
        cin>>a>>m;
        memset(vis,0,sizeof(vis));
        if(a%m==0)
        {
            cout<<"Yes"<<endl;
            return 0;
        }
        while(1)
        {
            a=(a+a%m)%m;
            if(a==0)
            {
                cout<<"Yes"<<endl;
                 return 0;
            }
            if(vis[a])
            {
                cout<<"No"<<endl;
                return 0;
            }
            vis[a]=1;
        }
        return 0;   
    }
  • 相关阅读:
    机房收费系统——视图的运用
    POJ 3278: Catch That Cow
    LeetCode 66 Plus One(加一)(vector)
    iOS定位服务CoreLocation
    Python 多线程
    LuaStudio编辑调试软件
    高仿快递100--实战之RadioGroup和RadioButton应用
    HDU
    MVC项目中怎样用JS导出EasyUI DataGrid为Excel
    调用getChildFragmentManager时出现的Bug
  • 原文地址:https://www.cnblogs.com/ylrwj/p/10913998.html
Copyright © 2011-2022 走看看