CF 282B Modular Equations

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 a solution 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中有多少个因数,然后去掉小于b的因数。i和 a / i 是一对的,所以可以一次枚举这两个对称的数。复杂度就降低到了logn。但是注意当i*i==a时不要重复计数。

在判断a/i是否符合条件时一定不要忘记a/i>b这句话。

#include<cstdio>

using namespace std;

int main()
{
	int a,b; scanf("%d%d",&a,&b);

	if(a<b) printf("0");
	else if(a==b) printf("infinity");
	else
	{
		a-=b;
		int cnt=0;
		for(int i=1;i*i<=a;i++)//i --> x
			if(a%i==0)
			{
				if(i>b) cnt++;
				if(i*i!=a && a/i>b) cnt++;//i and a/i is a pair
			}
		printf("%d",cnt);
	}

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值