题解列表

筛选

简洁暴力的dfs就可以了

摘要:方向只要向下和向右,不需要开数组保存走过的路,数据量这么小,直接暴力就行#include<bits/stdc++.h>using namespace std;int n,m;long long ans……

立方和不等式——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))……