题解列表

筛选

立方和不等式——python

摘要:解题思路:注意事项:有等号参考代码:n = int(input())s = 0i = 1 while s<=n:    s+=i**3    i+=1print(i-2)……

偶数求和——python

摘要:解题思路:注意事项:参考代码:while True:    try:        n,m = map(int,input().split())        L = [i for i in rang……

蓝桥杯2017年第八届真题-分考场

摘要:解题思路:注意事项:参考代码:        static int n,min=100;         static int arr[][];//用一个二维数组来表达考生人数;         st……

字符排列问题——python

摘要:解题思路:注意事项:参考代码:from itertools import*n = int(input())L = set(permutations(input()))print(len(L))……

阶乘和数数数

摘要: 1:先判断哪些正整数符合要求,把符合的转成字符串放在数组里保存起来 2:对字符串进行排序 ```c #include #include #include #define N ……