博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ3641 (快速幂) 判断a^p = a (mod p)是否成立
阅读量:6084 次
发布时间:2019-06-20

本文共 1629 字,大约阅读时间需要 5 分钟。

Description

Fermat's theorem states that for any prime number p and for any integer a > 1, ap = a (mod p). That is, if we raise a to the pth power and divide by p, the remainder is a. Some (but not very many) non-prime values of p, known as base-pseudoprimes, have this property for some a. (And some, known as Carmichael Numbers, are base-a pseudoprimes for all a.)

Given 2 < p ≤ 1000000000 and 1 < a < p, determine whether or not p is a base-a pseudoprime.

Input

Input contains several test cases followed by a line containing "0 0". Each test case consists of a line containing p and a.

Output

For each test case, output "yes" if p is a base-a pseudoprime; otherwise output "no".

Sample Input

3 210 3341 2341 31105 21105 30 0

Sample Output

nonoyesnoyesyes 如果p是素数,输出no;如果p不是素数,判断a^p对p取余是否等于a。
1 #include
2 #include
3 __int64 f(__int64 a,__int64 b) 4 { 5 __int64 c=b,t=1; 6 while(b) 7 { 8 if(b % 2 != 0) 9 {10 t=t*a%c;11 }12 a=a*a%c;13 b/=2;14 }15 return t%c;16 }17 __int64 f2(__int64 a)18 {19 __int64 i;20 if(a <= 1 || a % 2 == 0) return 0;21 for(i=3;i<=sqrt(a);i++)22 {23 if(a % i == 0) return 0;24 }25 return 1;26 }27 int main()28 {29 30 __int64 p,a;31 while(scanf("%I64d %I64d",&p,&a) && p && a)32 {33 if(f2(p) == 1) printf("no\n");34 else35 {36 if(f(a,p) == a) printf("yes\n");37 else 38 printf("no\n");39 }40 41 }42 }

 

 

转载于:https://www.cnblogs.com/yexiaozi/p/5698795.html

你可能感兴趣的文章
以太坊系列之六: p2p模块--以太坊源码学习
查看>>
使用scikit-learn解决文本多分类问题(附python演练)
查看>>
2018 年最值得关注的 JavaScript 趋势
查看>>
什么是区块链?超级账本 Brian Behlendorf 从五个方面教你认识
查看>>
Linux中的帮助功能
查看>>
【iOS-Cocos2d开发之三】CCScene切换的所有特效,以及设置屏幕横竖屏!
查看>>
针对Android的Pegasus恶意软件版本和针对iOS的有什么不同?
查看>>
STL容器总结
查看>>
[C#]游戏地图绘制——双玩家版
查看>>
博客开篇自传
查看>>
Vue2基础Api学习
查看>>
linux复制目录结构
查看>>
函数传值与传引用的理解
查看>>
防火墙的AAA认证
查看>>
Centos常用操作记录
查看>>
The hierarchy of the type is inconsistent 问题
查看>>
基于Jquery的图片自动分组且自适应页面的缩略图展示特效
查看>>
RIP协议报文格式
查看>>
无敌删除
查看>>
我的友情链接
查看>>