题解列表

筛选

1003: [编程入门]密码破译

摘要:解题思路:注意事项:参考代码:str = input().lower() s = "" for i in str:     if i == 'w':         s += ……

编写题解 1118: Tom数

摘要:解题思路:注意事项:参考代码:while True:     try:         print(sum(list(map(int, input()))))     except:     ……

纪念品分组

摘要:解题思路:w=int(input())n=int(input())a=[]for i in range(n):    x=int(input())    a.append(x)a=sorted(a,r……

图像模糊处理

摘要:解题思路:注意事项:参考代码:n, m = map(int, input().split()) num = [list(map(int, input().split())) for _ in ran……

变幻的矩阵

摘要:解题思路:注意事项:参考代码:n = int(input()) num_start = [list(map(str, input().split())) for _ in range(n)] nu……