渺小小螃蟹
渺小小螃蟹
全部文章
题解
归档
标签
去牛客网
登录
/
注册
渺小小螃蟹的博客
全部文章
/ 题解
(共54篇)
题解 | #完数VS盈数#
#include<iostream> #include<cstdio> #include<vector> using namespace std; vector<int>numberE; vector<int>numberG; int...
2021-06-08
0
628
题解 | #约数的个数#
#include<iostream> #include<math.h> #include<vector> using namespace std; //两种选其一 const int MAXN=35000; //const int MAXN=sqrt(1e9)...
2021-05-15
0
607
题解 | #质因数的个数#
#include<iostream> #include<math.h> #include<vector> using namespace std; //两种选其一 const int MAXN=35000; //const int MAXN=sqrt(1e9)...
2021-05-15
0
585
题解 | #素数判定#
#include<iostream> #include<math.h> using namespace std; bool judge(int x) { if(x<2) { return false; } else ...
2021-05-15
0
571
题解 | #最大公约数#
#include<cstdio> int gcd(int a,int b) { if(a%b==0){ return b; } else{ return gcd(b,a%b); } } int main(){ int a,b; ...
2021-05-15
0
446
题解 | #又一版 A+B#
#include<cstdio> using namespace std; int main() { long long A,B; long long sum ; int m; while(scanf("%d %lld %lld",&m,&a...
2021-05-15
0
538
题解 | #八进制#
//同二进制题目 #include<iostream> #include<string> #include<vector> using namespace std; void Convert(int n) { vector<int> ans...
2021-05-13
0
496
题解 | #二进制数#
#include<iostream> #include<string> #include<vector> using namespace std; void Convert(int n) { vector<int> answer; ...
2021-05-13
0
0
题解 | #简单计算器#
#include<iostream> #include<string> #include<stack> #include<cctype> using namespace std; //优先级顺序#,$,+-,*/ int priority(char...
2021-05-13
1
602
题解 | #Zero-complexity Transposition#
#include<iostream> #include<cstdio> #include<stack> using namespace std; int main() { int n; stack<long long> seque...
2021-05-13
1
610
首页
上一页
1
2
3
4
5
6
下一页
末页