题解列表
编写题解 1160: 出圈
摘要:while True:
try:
n,m =map(int,input().split())
lis = list(range(1,n+1))
……
编写题解 1159: 偶数求和
摘要:解题思路:注意事项:参考代码:while True:
try:
n,m= map(int,input().split())
ls = [2]
……
【入门编程】最大公因数与最小公倍数-题解(Python代码0
摘要:解题思路:注意事项:参考代码:a, b = map(int, input().split()) # !!!!!!!!!!!!!!!!max_n = max(a, b)min_n = min(a, ……
蓝桥杯基础练习VIP-Huffuman树
摘要:解题思路:注意事项:参考代码:n=int(input())List=list(map(int,input().split()))cost=0while len(List)!=1: Min1=mi……
蓝桥杯基础练习VIP-阶乘计算
摘要:解题思路:注意事项:参考代码:def jc(n): result=1 while n!=1: result=result*n n=n-1 return i……
编写题解 1571: 蓝桥杯算法提高VIP-输出正反三角形
摘要:解题思路:注意事项:参考代码:m,n = map(int,input().split())
xing1 =list(range(1,2*m,2))
xing2 = xing1[:]
xing2.……
输出九九乘法表--编写题解 1570
摘要:print(" Nine-by-nine Multiplication Table")
print("--------------------------------------")
print……
1155: C语言训练-阶乘和数* (自定义函数求解)
摘要:def he(x):
f = 1
for i in ra
求[X,Y]内被除3余1并且被除5余3的整数的和(python)
摘要:m,n = map(int,input().split())if m > n: m,n = n,msum = 0for i in range(m,n): if i%3 == 1 and ……