(HDU)1562-- Guess the number (猜数字)

Posted ACDoge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(HDU)1562-- Guess the number (猜数字)相关的知识,希望对你有一定的参考价值。

题目链接:https://vjudge.net/problem/HDU-1562

我稍微加了点剪枝,但是水题似乎没有必要。

    #include <cstdio>
    #include <cstring>
    #include <cmath>
    #include <iostream>
    #include <algorithm>
    #include <string>
    #include <cstdlib>

    using namespace std;

    int main()
    {
        #ifndef ONLINE_JUDGE
        freopen("test.txt","r",stdin);
        freopen("test.out","w",stdout);
        #endif // ONLINE_JUDGE

        int t,a,b,c,i,ans;
        scanf("%d",&t);
        while(t--)
        {
            scanf("%d %d %d",&a,&b,&c);
            int left=1000,right=9999,flag=0;
            for(i=left;i<=right;i++)
            {
                if(i%a!=0) continue;
                if((i+1)%b!=0) continue;
                if((i+2)%c!=0) continue;
                flag=1;
                ans=i;
                break;
            }
            if(flag) printf("%d\n",ans);
            else printf("Impossible\n");
        }
        return 0;
    }

 

以上是关于(HDU)1562-- Guess the number (猜数字)的主要内容,如果未能解决你的问题,请参考以下文章

hdu 5981 Guess the number

TIME IN THE SUBWAY :GUESS NUM !

Guess the number

ACM-ICPC 2016 大连赛区现场赛 K. Guess the number && HDU 5981

HDU 1562 Oil Deposits

HDU 3591 The trouble of Xiaoqian(多重背包+全然背包)