AcWing 890. 能被整除的数——java
原题链接
简单
作者:
大猩猩吃月亮
,
2025-03-28 11:22:00
·河北
,
所有人可见
,
阅读 1
import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] s = br.readLine().split(" ");
int n = Integer.parseInt(s[0]);
int m = Integer.parseInt(s[1]);
int[] p = new int[m];
s = br.readLine().split(" ");
for(int i = 0; i < m; i++) {
p[i] = Integer.parseInt(s[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) == 1) {
if((long) t * p[j] > n) {
t = -1;
break;
}
cnt++;
t *= p[j];
}
}
if(t != -1) {
if(cnt % 2 == 1) res += n / t;
else res -= n / t;
}
}
System.out.println(res);
}
}