简单python走起 23行 简单 快速 摘要:解题思路:注意事项:参考代码:n=int(input())mas=list(map(int,input().split()))mas.sort(reverse=true)mas_1=[[]for i …… 题解列表 2021年04月08日 0 点赞 0 评论 240 浏览 评分:0.0
IP判断的一种解题Python 摘要:解题思路:注意事项:不知道为什么,有前导0的存在也提交正确参考代码:while True: str1 = input() list1 = list(str1.split('.…… 题解列表 2021年04月08日 0 点赞 4 评论 533 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换 摘要:参考代码:time = int(input())if 0 <= time <= 86399: H = time // 3600 M = (time - (H*3600)) // 60 …… 题解列表 2021年04月08日 0 点赞 0 评论 293 浏览 评分:0.0
编写题解 1093: 字符逆序 摘要:参考代码:my_str = list(map(str, input()))for i in my_str[::-1]: print(i, end="") …… 题解列表 2021年04月08日 0 点赞 0 评论 188 浏览 评分:0.0
编写题解 1030: [编程入门]二维数组的转置【简单易懂】 摘要:解题思路:注意事项:参考代码:lst=[] for i in range(3): j=list(map(int,input().split())) lst.append(j)…… 题解列表 2021年04月08日 0 点赞 0 评论 728 浏览 评分:9.9
简单python走起 摘要:解题思路:注意事项:参考代码:n=int(input())a='A'for i in range(1,n): a=a+chr(65+i)+aprint(a) …… 题解列表 2021年04月08日 0 点赞 0 评论 216 浏览 评分:0.0
简单python走起 14行 摘要:解题思路:注意事项:参考代码:n=int(int(input()))mas=[list(map(int,input().strip().split()))for i in range(n)]mas_1…… 题解列表 2021年04月08日 0 点赞 0 评论 369 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: mas=list(map(int,input().split())) mas.pop(0) mas.sort(reverse=T…… 题解列表 2021年04月07日 0 点赞 0 评论 300 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: n=int(input()) if 90<=n<=100: print('A') elif 75<…… 题解列表 2021年04月07日 0 点赞 0 评论 355 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: m=list(map(int,input().split())) m.sort() if m[0]+m[1]>m[2]: …… 题解列表 2021年04月07日 0 点赞 0 评论 428 浏览 评分:6.0