SGU117 Counting

SGU117 Counting

题目大意

输入N个数,输出有多少个数的M次方可以被K整除

算法思路

快速幂取模求出每个数的M次方模K的结果,统计结果为0的个数

时间复杂度: O(NlogM)

代码

/**
 * Copyright (c) 2015 Authors. All rights reserved.
 * 
 * FileName: 117.cpp
 * Author: Beiyu Li <sysulby@gmail.com>
 * Date: 2015-05-23
 */
#include <bits/stdc++.h>

using namespace std;

#define rep(i,n) for (int i = 0; i < (n); ++i)
#define For(i,s,t) for (int i = (s); i <= (t); ++i)
#define foreach(i,c) for (__typeof(c.begin()) i = c.begin(); i != c.end(); ++i)

typedef long long LL;
typedef pair<int, int> Pii;

const int inf = 0x3f3f3f3f;
const LL infLL = 0x3f3f3f3f3f3f3f3fLL;

int n, m, k;

int pow_mod(int a, int b)
{
        int res = 1;
        for (; b; a = a * a % k, b >>= 1) if (b & 1) res = res * a % k;
        return res;
}

int main()
{
        scanf("%d%d%d", &n, &m, &k);
        int res = 0;
        rep(i,n) {
                int x;
                scanf("%d", &x);
                if (!pow_mod(x % k, m)) ++res;
        }
        printf("%d\n", res);

        return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值