Give Candies(费马小定理)

Posted kannyi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Give Candies(费马小定理)相关的知识,希望对你有一定的参考价值。

 

#include<bits/stdc++.h>
#define MAX 100005
#define mod 1000000007
using namespace std;
typedef long long ll;
char st[MAX];
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        ll p=0;
        int i=0,j;
        scanf("%s",st);
        while(st[i]!=)
        {
            p*=10;
            p+=(st[i++]-0);
            p%=(mod-1);
        }
        p=p-1;
        ll res=2,ans=1;
        while(p)
        {
            if(p&1) 
                ans=ans*res%mod;
            res=res*res%mod;
            p>>=1;
        }
        printf("%lld
",ans);
    }
    return 0;
}

 

以上是关于Give Candies(费马小定理)的主要内容,如果未能解决你的问题,请参考以下文章

费马小定理(介绍+证明+逆元代码实现)

费马小定理(介绍+证明+逆元代码实现)

HDU 6126 Give out candies

费马小定理 证明

费马小定理&欧拉定理

夜深人静写算法(三十二)- 费马小定理