SiuR7
SiuR7
全部文章
分类
归档
标签
去牛客网
登录
/
注册
SiuR7的博客
全部文章
(共4篇)
题解 | 浮点数加法
#include<iostream> #include<vector> #include<cstring> #include<algorithm> #include<math.h> using namespace std; string ...
2026-02-04
0
40
题解 | 单词替换
#include<iostream> #include<vector> /* You want someone to help you You I I want someone to help you */ using namespace std; int main() ...
2026-02-04
1
45
题解 | 单词替换
#include<iostream> using namespace std; /* 输入: You want someone to help you You I 输出: I want someone to help you 思考:用双指针确定每...
2026-02-01
1
48
题解 | 完数VS盈数
#include<bits/stdc++.h> using namespace std; vector<int> perfect; //完数 vector<int> full; //盈数 //判断是否是完数或者盈数 void ...
2026-01-18
1
46