题解 1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx1=0; string maxx; for…… 题解列表 2024年07月13日 0 点赞 0 评论 135 浏览 评分:0.0
1644: 蓝桥杯算法训练VIP-最长字符串 摘要:```cpp #include using namespace std; typedef long long ll; int main() { string maxxstr; …… 题解列表 2024年07月13日 0 点赞 0 评论 116 浏览 评分:0.0
1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string m…… 题解列表 2024年07月13日 0 点赞 0 评论 129 浏览 评分:0.0
浮点数据类型大小 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; short b; printf("%d %d",sizeof(a),sizeof…… 题解列表 2024年07月14日 0 点赞 0 评论 208 浏览 评分:0.0
高精度计算用Python爽到爆 摘要:from decimal import Decimal, getcontext # 设置小数点后的精度 getcontext().prec = 500 # 输入两个浮点数并转换为Decimal类…… 题解列表 2024年07月14日 0 点赞 0 评论 159 浏览 评分:0.0
题解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s,s1; cin>>s>>s1; if(s…… 题解列表 2024年07月14日 0 点赞 0 评论 111 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int …… 题解列表 2024年07月14日 0 点赞 0 评论 116 浏览 评分:0.0
2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;char…… 题解列表 2024年07月14日 0 点赞 0 评论 127 浏览 评分:0.0
题解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){string s,s1;cin>>s>>s1;if(s1.f…… 题解列表 2024年07月14日 0 点赞 0 评论 115 浏览 评分:0.0
题解 2861: 验证子串 摘要:```cpp #include using namespace std; typedef long long ll; int main() { string s,a; …… 题解列表 2024年07月14日 1 点赞 0 评论 154 浏览 评分:0.0