记录编号 |
132526 |
评测结果 |
AAAAAAAAAAAWWAAAAWAWA |
题目名称 |
[POJ 1061] 青蛙的约会 |
最终得分 |
80 |
用户昵称 |
奶猹 |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.130 s |
提交时间 |
2014-10-26 06:19:58 |
内存使用 |
0.23 MiB |
显示代码纯文本
#include <cstdio>
int x,y,m,n,l;
int ans=0;
bool flag=false;
int main()
{
freopen("poj_hama.in","r",stdin);
freopen("poj_hama.out","w",stdout);
scanf("%d%d%d%d%d",&x,&y,&m,&n,&l);
x%=l;y%=l;n%=l;m%=l;
while(x!=y)
{
ans++;
x+=m;x%=l;
y+=n;y%=l;
if(ans>1610)
{
flag=true;
break;
}
}
if(flag) printf("Impossible\n");
else printf("%d\n",ans);
//while(1);
return 0;
}