1833: 蓝桥杯2015年第六届真题-奇怪的数列(Python3)直接统计即可 摘要:解题思路:注意事项:参考代码:n, times, cnt, res = input(), int(input()), 1, '' for i in range(times): …… 题解列表 2021年03月14日 0 点赞 0 评论 425 浏览 评分:7.5
蓝桥杯2015年第六届真题-奇怪的数列-题解(Python代码) 摘要:```python def f(s): alist = [] #用来存放次数和元素 char = s[0] #先标记第一个元素 i=0 for n,_ in enumerate(s)…… 题解列表 2020年02月17日 0 点赞 0 评论 863 浏览 评分:6.4
蓝桥杯2015年第六届真题-奇怪的数列-题解(Python代码)py开荒柘 摘要:简单题: ```python s=input().split()[0] n=int(input()) def dispose(n,s): if n==0: return s L=…… 题解列表 2020年02月04日 0 点赞 0 评论 758 浏览 评分:6.0
模拟一下就好了 摘要:解题思路:注意事项:参考代码:m=input()n=int(input())s=list(m)for _ in range(n): cnt=1 t='' for i …… 题解列表 2023年04月04日 0 点赞 0 评论 68 浏览 评分:0.0