楚蒙2020
楚蒙2020
全部文章
读书笔记
归档
标签
去牛客网
登录
/
注册
楚蒙2020的博客
全部文章
/ 读书笔记
(共3篇)
题解 | #数制转换#
#include <stack> using namespace std; char IntToChar(long long res,int b) { res %= b; if(res >= 10) return res+'A'-10; else retur...
C++
2022-06-08
0
441
题解 | #Prime Number#
#include <vector> #include <cmath> const int Max = 1e5; using namespace std; bool isprime[Max]; vector<int>prime; void Inition() ...
C++
2022-05-30
0
368
题解 | #Prime Number#
#include <vector> #include <algorithm> using namespace std; int prime[10000]; int isprime[110000]; vector<int> input; const int Max...
C++
2022-05-30
0
401