2030ssxx
2030ssxx
全部文章
分类
归档
标签
去牛客网
登录
/
注册
2030ssxx的博客
TA的专栏
0篇文章
0人订阅
王道机试指南
0篇文章
0人学习
全部文章
(共102篇)
题解 | #约数的个数#
#include <iostream> #include <cmath> using namespace std; int main() { int n; while (cin >> n) { for(int i=1;i<...
2024-09-04
0
138
题解 | #质因数的个数#
#include <iostream> #include <cmath> using namespace std; const int N=sqrt(1e+9);//N=31622 bool prime[31623]; void Initial() { for(...
2024-09-04
0
68
题解 | #Prime Number#
#include <iostream> #include <vector> using namespace std; int prime[200001]; vector<int> su; void Initial() { for(int i=0;i<...
2024-09-04
0
85
题解 | #素数#
//用素数筛法找出所有质数 //质数的倍数为非质数 #include <iostream> using namespace std; int isPrime[10001]; void Initial() { for(int i=0;i<=10000;i++) {...
2024-09-04
0
85
题解 | #素数判定#
#include <iostream> #include <cmath> using namespace std; int Su(int a) { for(int i=2;i<=sqrt(a);i++) { if(a%i==0)return 0...
2024-09-04
0
84
题解 | #最简真分数#
//最简真分数是指分子分母的最大公因数为1的真分数 //本题不同组合即可,不需要不同组合的分数值必须不同 #include <iostream> #include <vector> using namespace std; int GCD(int a,int b) { ...
2024-09-04
0
78
题解 | #最大公约数#
#include <iostream> using namespace std; //a%b==b%a //x%0会报错 int GCD(int a,int b) { if(b==0)return a; else return GCD(b,a%b); } int ma...
2024-09-03
0
84
题解 | #数制转换#
#include <iostream> #include <vector> using namespace std; char IntToChar(int x) { if(x>=10)return x-10+'A'; else return x...
2024-09-03
0
85
题解 | #进制转换#
#include <iostream> #include <vector> using namespace std; int main() { string str; while (cin >> str) { str=str.s...
2024-09-03
0
71
题解 | #又一版 A+B#
#include <iostream> #include <vector> using namespace std; int main() { int a, b; int m; while (cin >> m) { if...
2024-09-03
0
78
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页