1870: 统计字符数 摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n): st = input() ji =set(st) dict_c =…… 题解列表 2021年12月31日 0 点赞 0 评论 394 浏览 评分:0.0
1869: 鸡兔同笼 摘要:解题思路:注意事项:参考代码:while True: try: num,leg=map(int,input().strip().split()) s = …… 题解列表 2021年12月31日 0 点赞 0 评论 403 浏览 评分:0.0
1867: 王牌花色 摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n): m = input() a,b = map(str,input().spli…… 题解列表 2021年12月31日 0 点赞 0 评论 321 浏览 评分:2.0
1866: 三位数反转 摘要:解题思路:注意事项:参考代码:while True: try: n = input() print(n[::-1]) except: &nb 题解列表 2021年12月31日 0 点赞 1 评论 661 浏览 评分:9.9
1859: 与2无关的数 摘要:解题思路:注意事项:参考代码:def num(x): s = 0 if x%2==0: s += 1 st = str(x) 题解列表 2021年12月31日 0 点赞 0 评论 326 浏览 评分:2.0
1856: 最小三个数 摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in range(3): …… 题解列表 2021年12月31日 0 点赞 0 评论 441 浏览 评分:0.0
1855: 输出字符'A'个数 摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n): print('A',end='')…… 题解列表 2021年12月31日 0 点赞 0 评论 362 浏览 评分:0.0
1853: 蓝桥杯基础练习-数列排序 摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in m: prin…… 题解列表 2021年12月31日 0 点赞 0 评论 403 浏览 评分:0.0
1851: 求所给范围内水仙花数并排列 摘要:解题思路:注意事项:参考代码:while True: try: m,n = map(int,input().split()) s = 0 &nbs 题解列表 2021年12月31日 0 点赞 0 评论 342 浏览 评分:0.0
1848: 求输入数据绝对值 摘要:解题思路:注意事项:参考代码:while True: try: x = input() print('%.2f'%abs(float(x)…… 题解列表 2021年12月31日 0 点赞 0 评论 558 浏览 评分:9.9