51Nod 1014-X^2 Mod P

基准时间限制:1 秒 空间限制:131072 KB 分值: 10  难度:2级算法题
 收藏
 关注
X*X mod P = A,其中P为质数。给出P和A,求<=P的所有X。
Input
两个数P A,中间用空格隔开。(1 <= A < P <= 1000000, P为质数)
Output
输出符合条件的X,且0 <= X <= P,如果有多个,按照升序排列,中间用空格隔开。
如果没有符合条件的X,输出:No Solution
Input示例
13 3
Output示例
4 9

题解:暴力枚举即可。注意开long long int。

#include<bits/stdc++.h>
using namespace std;
#define ll long long int
int main()
{
	ll p,a,flog=0;
	scanf("%lld%lld",&p,&a);
	for(ll i=1;i<=p;i++)
	{
		if(i*i%p==a)
		{
			flog=1;
			printf("%lld ",i);
		}
	}
	if(flog==0)
	{
		printf("No Solution\n");
	}
	return 0;
} 



猜你喜欢

转载自blog.csdn.net/qq_40727946/article/details/80270562