题解列表

筛选

1866: 三位数反转(Python)

摘要:解题思路:注意事项:参考代码:while True:     try:         n = input()         m = n[::-1]         

刷题统计Pthon

摘要:解题思路:注意事项:参考代码:a,b,n=map(int,input().split())week=5*a+2*bdays=(n//week)*7n%=weekif n<=a*5:    day=0 ……

计算球的体积(Python)

摘要:解题思路:注意事项:参考代码:import math pi = math.pi while True:         try:         r = float(input()) ……

题解 2811: 救援

摘要:解题思路:注意事项:参考代码:import math   # 调用数学模块 t = 0 n = int(input())    #屋顶数 for i in range(n):     a = ……

Python成绩排名

摘要:解题思路:注意事项:list.sort(key=lambda x:(x[0],-x[1])) # 先按第一个返回值排序,排序完成之后, 如果第一个返回值相等,然后再按照第二个返回值排序参考代码:n=i……

Python解决登陆验证问题

摘要:解题思路:注意事项:运用字典来解决参考代码:dict={&#39;dotcpp&#39;:&#39;123456&#39;}m=input()n=input()if m in dict and dic……

2810: 鸡尾酒疗法

摘要:解题思路:注意事项:参考代码:l = [] n = int(input()) a,b = map(int,input().split()) x = b / a for i in range(0……

python DFS解法

摘要:v,w=map(int,input().split())pvw=[]for i in range(5):    pvw.append([int(_) for _ in input().split()]……

pyhton选择排序解法 带注释

摘要:n=int(input().strip())X=list(map(int,input().split()))# print(X)for i in range(n):    k=i #记录最小的值的下标……

鸡兔同笼Python解题

摘要:解题思路:注意事项:注意取值范围参考代码:n,m=map(int,input().split())for i in range(n+1):    if i*2+(n-i)*4==m:        p……