题解列表

筛选

1856: 最小三个数

摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in range(3):  ……

1869: 鸡兔同笼

摘要:解题思路:注意事项:参考代码:while True:     try:         num,leg=map(int,input().strip().split())         s = ……

1870: 统计字符数

摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n):     st = input()     ji =set(st)     dict_c =……