蓝桥杯2015年第六届真题-奇怪的数列-题解(Python代码)py开荒柘
摘要:简单题:
```python
s=input().split()[0]
n=int(input())
def dispose(n,s):
if n==0:
return s
L=……
蓝桥杯2015年第六届真题-奇怪的数列-题解(Python代码)
摘要:```python
def f(s):
alist = [] #用来存放次数和元素
char = s[0] #先标记第一个元素
i=0
for n,_ in enumerate(s)……
1833: 蓝桥杯2015年第六届真题-奇怪的数列(Python3)直接统计即可
摘要:解题思路:注意事项:参考代码:n, times, cnt, res = input(), int(input()), 1, ''
for i in range(times):
……