玄骨
玄骨
全部文章
分类
归档
标签
去牛客网
登录
/
注册
玄骨的博客
全部文章
(共23篇)
题解 | 小苯的IDE括号问题(easy)
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,k; cin>>n>>k...
2025-10-29
2
14
题解 | 小苯的数字合并
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int mod=998244353; ll quick(ll a,ll b){ ll ans=1; if(b==0){ ...
2025-10-25
2
18
题解 | 数颜色
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string s; cin>>s; in...
2025-10-24
2
16
题解 | 田忌赛马
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); vector<int>v(3); cin>...
2025-10-24
2
20
题解 | 求阶乘
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算 n 的阶乘 * @param n int整型 * @return int整型 *...
2025-10-23
2
21
题解 | 第一宇宙速度
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算星球的第一宇宙速度 * @param M double浮点型 星球的质量 * @param r...
2025-10-23
2
15
题解 | 字符串操作
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,m; cin>>n>>m...
2025-10-23
2
18
题解 | 扫雷
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,m; cin>>n>>m...
2025-10-23
2
21
题解 | 杨辉三角
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n; cin>>n; int a...
2025-10-23
2
24
题解 | 阶乘末尾非零数字
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n; cin>>n; int n...
2025-10-23
2
16
首页
上一页
1
2
3
下一页
末页