题解列表
弟弟的作业(python代码)
摘要:import sys
def jud(x):
m = 0
for i in x:
if i == '-' or i == &
1579: 蓝桥杯算法提高VIP-陶陶摘苹果2
摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())k=list(map(int,input().split()))s=0for i in k: if i>(m……
1480: 模拟计算器
摘要:解题思路:注意事项:参考代码:while True: try: a, b, c = map(str, input().split()) if (c == '+……
1503: 蓝桥杯算法提高VIP-前10名
摘要:解题思路:注意事项:参考代码:n=int(input())lst=list(map(int,input().split()))lst2=sorted(lst,reverse=True)for i in……
1481: 蓝桥杯算法提高VIP-剪刀石头布
摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if (a==0 and b==2) or (a==1 and b==0) or (a==2 and b==1):……
1466: 蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:注意事项:参考代码:def judge(m,n): if len(m)!=len(n): return 1 elif m==n: return 2 ……
1118: Tom数(python)
摘要:解题思路:注意事项:补充大佬解法,要加上except EOFError才能运行通过参考代码:while True: try: print(sum([int(i) for i in ……