题解列表
直接判断(Python)
摘要:def panduan(N): for i in range(N+1): if i**3 == N: return 1 if i**3>N: ……
C++版本—— 理解题意
摘要: #include
using namespace std;
int main()
{
int m,n;
cin >> m >>……
方法比较直接(Python)
摘要:zfc='qwertyuiopasdfghjklzxcvbnm'tj=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,]whi……
1641: 蓝桥杯算法训练VIP-星际交流(Python3)
摘要:解题思路:注意事项: Python中的permutations结果和C++的next_permutation有区别,而本题是按照C++标准走的,所以需要对Python的permutations结……
直接理解(Python)
摘要:a,b=map(int,input().split())def sushu(N): for i in range(2,N): if N%i==0: retur……
直接判断(Python)
摘要:N=int(input())while N: t=int(input()) if t % 2 == 0: print('even') else: ……
题解 1976: 蓝桥杯算法提高VIP-删除重复元素
摘要:解题思路:注意事项:参考代码:import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
im……
简单易懂还是STL香
摘要:#include<bits/stdc++.h>
using namespace std;
//写一个仿函数
class MyPrint
{
public:
voi……
五次方数递归实现【python】
摘要:# MarkDown编辑器基本使用说明
i=2
def chek(n):
if n==0:
return 0
else:
return ……