码迷,mamicode.com
首页 > 其他好文 > 详细

Counting - SGU 117(快速幂)

时间:2015-09-17 21:23:38      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

题目大意:求下面N个数里面有多少个数的M次方能整除K

代码如下:

========================================================

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;

const int MAXN = 10007;
const int oo = 1e9+7;

int QuickPow(int a, int b, int Mod)
{
    int t = 1;

    while(b)
    {
        if(b & 1)
            t = (t * a) % Mod;
        a = (a * a) % Mod;

        b >>= 1;
    }

    return t;
}

int main()
{
    int a, b, N, Mod, ans=0;

    scanf("%d%d%d", &N, &b, &Mod);

    while(N--)
    {
        scanf("%d", &a);
        if(QuickPow(a, b, Mod) == 0)
            ans++;
    }

    printf("%d\n", ans);

    return 0;
}

 

Counting - SGU 117(快速幂)

标签:

原文地址:http://www.cnblogs.com/liuxin13/p/4817521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!