AuroraYxh
AuroraYxh
全部文章
分类
归档
标签
去牛客网
登录
/
注册
AuroraYxh的博客
全部文章
(共2篇)
题解 | Prime Number
#include <bits/stdc++.h> #include <vector> using namespace std; const int N=5e5+10; bool st[N]; vector<int> prime; void get_prim...
2023-07-21
0
395
题解 | Simple Sorting
#include <bits/stdc++.h> using namespace std; const int N=1e5+10; bool st[N]; int main() { std::ios::sync_with_stdio(false);std::cin.ti...
2023-07-21
0
295