(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 (猜数字)的主要内容,如果未能解决你的问题,请参考以下文章
TIME IN THE SUBWAY :GUESS NUM !