西区梭梭树
西区梭梭树
全部文章
分类
归档
标签
去牛客网
登录
/
注册
西区梭梭树的博客
全部文章
(共50篇)
题解 | #最大公约数#
#include <iostream> using namespace std; int gcd(int a,int b){ if(b==0) return a; return gcd(b,a%b); } int main() { int a, b; wh...
2023-03-07
0
174
题解 | #最简真分数#
#include <iostream> #include "vector" #include "algorithm" using namespace std; int gcd(int a, int b) { if (b == 0) return a; else retur...
2023-03-07
0
308
题解 | #素数判定#
#include <iostream> #include <cmath> using namespace std; int main() { int n; while (cin >> n) { // 注意 while 处理多个 case ...
2023-03-07
0
280
题解 | #10进制 VS 2进制#
#include <iostream> using namespace std; string divide2(string s) {//大数除二 string ans; int remainer = 0; for (int i = 0; i < s.siz...
2023-03-06
0
280
题解 | #数制转换#
#include <iostream> #include <cmath> using namespace std; int charToInt(char c) { if (c >= 'a' && c <= 'f') return c - 'a' + 10;...
2023-03-06
0
248
题解 | #进制转换#
#include <iostream> #include "stack" #include "cmath" using namespace std; int charToInt(char c) { if (c <= '9' && c >= '0')return c -...
2023-03-06
0
223
题解 | #又一版 A+B#
#include <iostream> using namespace std; int main() { int m; while (cin >> m) { if (m == 0) break; long long a, b...
2023-03-06
0
167
题解 | #八进制#
#include <iostream> #include "vector" using namespace std; int main() { int a, b; while (cin >> a ) { // 注意 while 处理多个 case ...
2023-03-06
0
158
题解 | #进制转换#
#include <iostream> using namespace std; struct bigInterger { int digits[30]; int length; bigInterger(); bigInterger(string s); ...
2023-03-05
0
261
题解 | #Powerful Calculator#
本题用例无须考虑负数,若有负数仍可以用这些基运算实现 #include <iostream> #include "cmath" using namespace std; struct bigInteger { int nums[1000]; int length; ...
2023-03-04
0
371
首页
上一页
1
2
3
4
5
下一页
末页