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
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的正整数x存在。
分析:暴力可解。a % x == b有(a – b) % x == 0,也就是找a – b的因子。前提是:x是正整数,但是要注意需满足x > b(余数比除数小),当a
AC代码:
#include #include #include #include #include #include #include #include
登录后复制
Python版:
a, b = map(int, raw_input().split())if a == b: print 'infinity'elif a b: ans += 1 if a/i > b and i*i != a: ans += 1 i += 1 print ans
登录后复制
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3097031.html