摘要:
https://ac.nowcoder.com/acm/problem/16710 给定a,b求lcm 注意a先除以gcd再乘b,否则有可能会爆数据范围。 点击查看代码 #include <bits/stdc++.h> using namespace std; #define int unsigne 阅读全文
摘要:
https://ac.nowcoder.com/acm/problem/235228 思路:用线性筛筛出$\sqrt r$以内的质数,再筛出区间L~R的质数。 点击查看代码 #include <bits/stdc++.h> using namespace std; int cnt = 0; bool 阅读全文