首页 > 其他 > 详细

HDU 1562 Guess the number

时间:2016-08-05 13:37:44      阅读:214      评论:0      收藏:0      [点我收藏+]

暴力。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<iostream>
using namespace std;
typedef long long LL;
const double pi=acos(-1.0),eps=1e-8;
void File()
{
    freopen("D:\\in.txt","r",stdin);
    freopen("D:\\out.txt","w",stdout);
}
inline int read()
{
    char c = getchar();  while(!isdigit(c)) c = getchar();
    int x = 0;
    while(isdigit(c)) { x = x * 10 + c - 0; c = getchar(); }
    return x;
}

int T;

int main()
{
    scanf("%d",&T);
    while(T--)
    {
        int a,b,c; scanf("%d%d%d",&a,&b,&c);
        int ans=-1;
        for(int i=1000;i<=9999;i++)
        {
            if(i%a==0&&(i+1)%b==0&&(i+2)%c==0)
            {
                ans=i;break;
            }
        }
        if(ans==-1) printf("Impossible\n");
        else printf("%d\n",ans);

    }
    return 0;
}

 

HDU 1562 Guess the number

原文:http://www.cnblogs.com/zufezzt/p/5740771.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!