2023-9-10 能被整除的数

题目链接:能被整除的数

在这里插入图片描述文章来源地址https://uudwc.com/A/PmnAo

#include <iostream>
#include <algorithm>

using namespace std;

typedef long long LL;

const int N = 20;

int n, m;
int p[N];

int main()
{
    cin >> n >> m;
    for(int i = 0; i < m; i++) cin >> p[i];
    
    int res = 0;
    for(int i = 1; i < 1 << m; i++)
    {
        int t = 1, cnt = 0;
        for(int j = 0; j < m; j++)
            if(i >> j & 1)
            {
                cnt ++;
                if((LL) t * p[j] > n) 
                {
                    t = -1;
                    break;
                }
                t *= p[j];
            }
        if(t != -1){
            if(cnt % 2) res += n / t;
            else res -= n / t;
        }
    }
    cout << res << endl;
    
    return 0;
}

原文地址:https://blog.csdn.net/weixin_63522344/article/details/132795883

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年09月10日 23:16
下一篇 2023年09月10日 23:16