小路绫ayaya
小路绫ayaya
全部文章
分类
归档
标签
去牛客网
登录
/
注册
小路绫ayaya的博客
全部文章
(共45篇)
题解 | 点的距离
#include <iostream> #include <cmath> #include <iomanip> using namespace std; class CPoint{ private: double x, y; publ...
2026-03-13
0
38
题解 | 弹地小球
#include <iostream> #include <iomanip> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); ...
2026-03-13
0
47
题解 | 整数和
#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int m; while(cin >...
2026-03-12
0
41
题解 | 分段函数
#include <iostream> #include <iomanip> using namespace std; void function(const double &m){ if(m >= 0 && m < 2) co...
2026-03-12
0
36
题解 | 最大公约数1
#include <iostream> #include <numeric> #include <climits> using namespace std; int main() { ios_base::sync_with_stdio(false); ...
2026-03-12
0
45
题解 | Problem D
#include <iostream> #include <string> using namespace std; void solve(const string &a, const string &b){ if (a.empty() || b....
2026-03-12
0
33
题解 | Problem B
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false);...
2026-03-12
0
37
题解 | 进制转换2
#include <iostream> #include <string> #include <algorithm> using namespace std; typedef long long ll; int main() { ios_base::...
2026-03-12
0
41
题解 | 最长&最短文本
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; struct str{ string s; ...
2026-03-12
0
32
题解 | A+B
#include <iostream> #include <string> using namespace std; int string_to_int(const string &a) { int x = 0; int n = a.length(...
2026-03-10
0
38
首页
上一页
1
2
3
4
5
下一页
末页