1969: 蓝桥杯算法提高VIP-字符串跳步 摘要:```cpp #include using namespace std; int main() { unsigned int start,step; string s; …… 题解列表 2023年02月01日 0 点赞 0 评论 59 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { string str; cin >> str; int…… 题解列表 2019年12月02日 0 点赞 0 评论 513 浏览 评分:9.9
这题我真的是理解错题意了,这也太让人误解了 摘要:解题思路:都说是第statrt位开始,第二位不是b,竟然是c注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int m…… 题解列表 2021年05月17日 0 点赞 1 评论 382 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { cha…… 题解列表 2020年02月08日 0 点赞 0 评论 485 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步 摘要:#include<stdio.h> #include<string.h> int main() { char s[99993];//这个很关键,测试这个代码最小就是99993能通过 …… 题解列表 2022年07月22日 0 点赞 0 评论 139 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步-题解(C++代码) 摘要:# 代码 ```cpp #include #include int main() { std::string str; std::cin >> str; int st…… 题解列表 2019年12月31日 0 点赞 0 评论 348 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步-题解(Python代码) 摘要:在python中可以当成序列来看,list[star:end:step],表示从star位开始,以step为间隔,一直到end,那么这道题就很简单了 ```python st=input() …… 题解列表 2020年02月12日 0 点赞 0 评论 448 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步-题解(C++代码)(char类型数组实现) 摘要:解题思路:注意细节就能节省时间,才能决定成败.注意事项: 字符串类型,长度至少得10000=1e4,个人习惯1e6长度;参考代码:#include<bits/stdc++.h> using name…… 题解列表 2020年07月22日 0 点赞 0 评论 339 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步-题解(C语言代码) 摘要: #include #include char str[100005]; char str2[100005]; void main() …… 题解列表 2020年03月03日 0 点赞 3 评论 668 浏览 评分:9.9
字符串跳步 (Java代码) 摘要:import java.util.Scanner; public class Main{ public static void main(String[] args) { Scan…… 题解列表 2022年06月12日 0 点赞 0 评论 114 浏览 评分:9.9