小路绫ayaya
小路绫ayaya
全部文章
分类
归档
标签
去牛客网
登录
/
注册
小路绫ayaya的博客
全部文章
(共45篇)
题解 | 判断三角形类型
#include <iostream> #include <vector> #include <algorithm> #include <cmath> using namespace std; int main() { ios_base:...
2026-03-06
0
17
题解 | 互换最大最小数
#include <vector> #include <iostream> #include <climits> using namespace std; int main() { ios_base::sync_with_stdio(false); ...
2026-03-06
0
14
题解 | 排名
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct student { string ID; int score; }; ...
2026-03-06
0
16
题解 | Graduate Admission
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct student { double GE, GI; double fin...
2026-03-06
0
17
题解 | 数字反转
#include <iostream> #include <vector> using namespace std; int re(int n) { vector<int> num; while (n > 0) { int...
2026-03-04
0
15
题解 | Simple Sorting
#include <iostream> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); ...
2026-03-04
0
18
题解 | 二叉树
#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
16
题解 | 拦截导弹
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false);...
2026-03-04
0
13
题解 | 采药
#include <iostream> #include <vector> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int...
2026-03-04
0
17
题解 | 求平均年龄
#include <iostream> #include <iomanip> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); in...
2026-03-04
0
14
首页
上一页
1
2
3
4
5
下一页
末页