蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)
摘要:#include <iostream>#include <cstring>using namespace std;char a[110000];char s[1000010];int main(){ ……
蓝桥杯2015年第六届真题-奇怪的数列-题解(Python代码)py开荒柘
摘要:简单题:
```python
s=input().split()[0]
n=int(input())
def dispose(n,s):
if n==0:
return s
L=……
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)代码不多,简单操作
摘要:```cpp
#include
#include
#include
using namespace std;
void fun(string &str)
{
string s="";
……
蓝桥杯2015年第六届真题-奇怪的数列 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iterator>#include<stdio.h>#include<iomanip>#include<string……
蓝桥杯2015年第六届真题-奇怪的数列-题解(Python代码)
摘要:```python
def f(s):
alist = [] #用来存放次数和元素
char = s[0] #先标记第一个元素
i=0
for n,_ in enumerate(s)……
蓝桥杯2015年第六届真题-奇怪的数列 (C++代码)
摘要:解题思路:用循环...有点绕,递归可能好一点...注意事项:参考代码:#include <iostream>
#include <stdio.h>
#include <string>
#incl……
1833: 蓝桥杯2015年第六届真题-奇怪的数列(Python3)直接统计即可
摘要:解题思路:注意事项:参考代码:n, times, cnt, res = input(), int(input()), 1, ''
for i in range(times):
……
蓝桥杯2015年第六届真题-奇怪的数列-题解(C语言代码)
摘要:解题思路:参考代码:虽然这个代码可以ac但是如果输入相同数字超过10之后,会出现bug;#include#includechar a[1000];
char b[105];
int n;
int……
蓝桥杯2015年第六届真题-奇怪的数列-题解(Java代码)
摘要: import java.util.Scanner;
public class 奇怪的数列 {
/**
* @param args
*/
public static v……