1977: 求中间数 摘要:解题思路:注意事项:参考代码:ls = list(map(int,input().split())) ls.sort() print(ls[1])…… 题解列表 2021年12月31日 0 点赞 0 评论 269 浏览 评分:0.0
1970: 巨大的数 摘要:解题思路:注意事项:参考代码:n = int(input()) m = map(int,input().split()) s = 1 for i in m: s *= i print…… 题解列表 2021年12月31日 0 点赞 0 评论 246 浏览 评分:0.0
1933: 蓝桥杯算法提高VIP-约数个数 摘要:解题思路:注意事项:参考代码:n = int(input()) s = 0 for i in range(1,n+1): if n%i == 0: s+=1 prin…… 题解列表 2021年12月31日 0 点赞 0 评论 239 浏览 评分:0.0
1915: 蓝桥杯算法提高VIP-三个整数的排序 摘要:解题思路:注意事项:参考代码:ls = list(map(int,input().split())) ls.sort(reverse=True) for i in ls: print(i…… 题解列表 2021年12月31日 0 点赞 0 评论 332 浏览 评分:0.0
1870: 统计字符数 摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n): st = input() ji =set(st) dict_c =…… 题解列表 2021年12月31日 0 点赞 0 评论 261 浏览 评分:0.0
1869: 鸡兔同笼 摘要:解题思路:注意事项:参考代码:while True: try: num,leg=map(int,input().strip().split()) s = …… 题解列表 2021年12月31日 0 点赞 0 评论 302 浏览 评分:0.0
1867: 王牌花色 摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n): m = input() a,b = map(str,input().spli…… 题解列表 2021年12月31日 0 点赞 0 评论 196 浏览 评分:2.0
1866: 三位数反转 摘要:解题思路:注意事项:参考代码:while True: try: n = input() print(n[::-1]) except: &nb 题解列表 2021年12月31日 0 点赞 1 评论 509 浏览 评分:9.9
1859: 与2无关的数 摘要:解题思路:注意事项:参考代码:def num(x): s = 0 if x%2==0: s += 1 st = str(x) 题解列表 2021年12月31日 0 点赞 0 评论 251 浏览 评分:2.0
1856: 最小三个数 摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in range(3): …… 题解列表 2021年12月31日 0 点赞 0 评论 304 浏览 评分:0.0