首页 > 代码库 > (HDU)1562-- Guess the number (猜数字)
(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 (猜数字)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。