python--study||O.o 摘要:参考代码:n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) c =…… 题解列表 2024年04月21日 0 点赞 0 评论 346 浏览 评分:0.0
转化为数组 摘要:解题思路:强制类型转换求和注意事项:无参考代码:for i in range(100,1000): my_str = str(i) sum = int(my_str[0]) ** 3 + …… 题解列表 2024年04月21日 0 点赞 0 评论 440 浏览 评分:9.9
python--study||O.o 摘要:参考代码:t = int(input()) res_min, res_max = 0, 1e10 for _ in range(t): a, b = map(int, input().s…… 题解列表 2024年04月21日 0 点赞 0 评论 243 浏览 评分:0.0
python--study||O.o 摘要:参考代码:n = int(input()) arr = list(map(str, input().split())) #dp[i]是以i为数字结尾的最长接龙子序列的长度 dp = [0] * …… 题解列表 2024年04月21日 0 点赞 0 评论 339 浏览 评分:9.9
python--study||O.o 摘要:参考代码:#time是之前的飞机降落所需的时间 def dfs(step, time): if step == n: return True for i in …… 题解列表 2024年04月21日 0 点赞 0 评论 221 浏览 评分:0.0
简单易懂方法 摘要:解题思路:用while True实现无限循环,观察发现,输入n,则第一行首尾为“*”,中间为n个空格,这样的行共有n行,总共有n+1行,且第n+1行为n+2个“*”注意事项:注意try和except的…… 题解列表 2024年04月20日 0 点赞 0 评论 534 浏览 评分:10.0
蓝桥杯2014年第五届真题-兰顿蚂蚁(python) 摘要:解题思路:把蚂蚁的行动、动作当作对象,创建关于mayi()的的对象,并对蚂蚁行动关于黑格、白格等转向设置函数point(self),在主函数中对行走后原位置黑白格取反注意事项:此代码中,每个格子的参数…… 题解列表 2024年04月20日 0 点赞 0 评论 180 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:s=int(input()) '''print('%.2f'%sum(i+ for i in range(s)))'&#…… 题解列表 2024年04月20日 0 点赞 0 评论 134 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) print('%.2f' % (sum(i for i in range(1,a+1))+…… 题解列表 2024年04月20日 0 点赞 0 评论 158 浏览 评分:0.0
python--study||O.o 摘要:参考代码:import sys def make(x): res = bin(x) res = res[2:] while len(res) < 5: …… 题解列表 2024年04月20日 0 点赞 0 评论 213 浏览 评分:0.0