记录编号 239945 评测结果 AAAAAAAAAA
题目名称 [POJ 1061] 青蛙的约会 最终得分 100
用户昵称 Gravatar萌萌哒姐姐 是否通过 通过
代码语言 Pascal 运行时间 0.021 s
提交时间 2016-03-20 21:06:33 内存使用 0.17 MiB
显示代码纯文本
var
qwq:boolean;
x,y,n,m,l,i:longint;
begin
	assign(input,'poj_hama.in');reset(input);
	assign(output,'poj_hama.out');rewrite(output);
	qwq:=false;
	readln(x,y,m,n,l);
	x:=x mod l ;y:=y mod l;m:=m mod l;n:=n mod l;
	while x<>y do 
		begin
			inc(i);
			inc(x,m);x:=x mod l;
			inc(y,n);y:=y mod l;
			if i>1000000 then 
				begin
					qwq:=true;
					break;
				end;
		end;
	if qwq then writeln('Impossible')
		else
			writeln(i);
	close(input);close(output);
end.