Codeforces Round #282 (Div. 2) B. Modular Equations

原题链接:

http://codeforces.com/group/MlEaNIrGCZ/contest/495/problem/B


B. Modular Equations
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Last week, Hamed learned about a new type of equations in his math class called Modular Equations. Lets define i modulo j as the remainder of division of i by j and denote it by . A Modular Equation, as Hamed's teacher described, is an equation of the form  in which a and b are two non-negative integers and x is a variable. We call a positive integer x for which  asolution of our equation.

Hamed didn't pay much attention to the class since he was watching a movie. He only managed to understand the definitions of these equations.

Now he wants to write his math exercises but since he has no idea how to do that, he asked you for help. He has told you all he knows about Modular Equations and asked you to write a program which given two numbers a and b determines how many answers the Modular Equation  has.

Input

In the only line of the input two space-separated integers a and b (0 ≤ a, b ≤ 109) are given.

Output

If there is an infinite number of answers to our equation, print "infinity" (without the quotes). Otherwise print the number of solutions of the Modular Equation .

Sample test(s)
input
21 5
output
2
input
9435152 272
output
282
input
10 10
output
infinity
Note

In the first sample the answers of the Modular Equation are 8 and 16 since 

题意:给出a,b,求方程a%x=b有多少个解。

思路:

①a=b,无数解。

②a<b,无解。

③a>b,等式可化为(a-b)%x=0,即找a-b的因子数,直接暴力搜索,复杂度为O(根号(a-b)),可以过,还要注意,x必须满足小于b。

代码:

#include "stdio.h"

int a,b,c,ans,i;

int main()
{
	scanf("%d%d",&a,&b);
	if(a==b)
		printf("infinity\n");
	else if(a<b)
		printf("0\n");
	else
	{
		c=a-b;
		for(i=1;i*i<c;i++)
		{
			if(c%i==0)
			{
				if(i>b)
					ans++;
				if(c/i>b)
					ans++;
			}
		}
		if(i*i==c&&i>b)
			ans++;
		printf("%d\n",ans);
	}
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值