小路绫ayaya
小路绫ayaya
全部文章
分类
归档
标签
去牛客网
登录
/
注册
小路绫ayaya的博客
全部文章
(共11篇)
题解 | 数字反转
#include <iostream> #include <vector> using namespace std; int re(int n) { vector<int> num; while (n > 0) { int...
2026-03-04
0
5
题解 | Simple Sorting
#include <iostream> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); ...
2026-03-04
0
6
题解 | 二叉树
#include <iostream> using namespace std; int node(int m, int n) { if(m > n) return 0; else { return node(m * 2, n) + no...
2026-03-04
0
5
题解 | 拦截导弹
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false);...
2026-03-04
0
7
题解 | 采药
#include <iostream> #include <vector> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int...
2026-03-04
0
7
题解 | 求平均年龄
#include <iostream> #include <iomanip> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); in...
2026-03-04
0
6
题解 | Financial Management
#include <iostream> #include <vector> #include <iomanip> using namespace std; int main() { ios_base::sync_with_stdio(false); ...
2026-03-04
0
6
题解 | 整数奇偶排序
#include <iostream> #include <vector> #include <algorithm> using namespace std; bool sequence(int a, int b) { if (a % 2 != b %...
2026-03-04
0
6
题解 | Biorhythms
#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int p, e, i, d; cin &g...
2026-03-04
0
6
题解 | Mileage Bank
#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); string initial, final; ...
2026-03-03
0
8
首页
上一页
1
2
下一页
末页