captain_fto
captain_fto
全部文章
分类
题解(54)
归档
标签
去牛客网
登录
/
注册
captain_fto的博客
全部文章
(共35篇)
题解 | #争夺前五名#
此题n干扰项 while True: try: n=input() scores=[] score=input().split(" ") scores=list(map(int,score)) scores.so...
Python3
2021-12-19
0
382
题解 | #变种水仙花#
补齐5位切片求值 for i in range(10000,100000): n="{:05d}".format(i) lily_number=int(n[:1])*int(n[1:])+int(n[:2])*int(n[2:])+int(n[:3])*int(n[3:])+int(...
Python3
2021-12-19
0
335
题解 | #网购#
负值场景需要处理 input_val=input().split(" ") price=float(input_val[0]) month,day,discount=map(int,input_val[1:]) if month==11 and day==11: price=price*0....
Python3
2021-12-19
0
367
题解 | #计算平均成绩#
map解包+格式化 scores=input().split(" ") score1,score2,score3,score4,score5=map(int, scores) print("{:.1f}".format((score1+score2+score3+score4+score5)/5))
Python3
2021-12-19
0
339
题解 | #输出学生信息#
输出 print("{}{:4}{}{:4}{}".format("Name","","Age","","Gender")) print("{}".format("-"*21)) print("{}{:4}{}{:5}{}".format("Jack","","18","","man"))
Python3
2021-12-19
0
379
题解 | #大小写转换#
转换 while True: try: char=input() print(char.lower()) except: break
Python3
2021-12-19
0
448
题解 | #计算三角形的周长和面积#
海伦公式S=√p(p-a)(p-b)(p-c) p=(a+b+c)/2 #海伦公式S=√p(p-a)(p-b)(p-c) #p=(a+b+c)/2 import math a,b,c=input().split(" ") circumference=float(a)+float(b)+float(c...
Python3
2021-12-19
0
259
题解 | #计算体重指数#
数值计算 weight,height=input().split(" ") bmi=int(weight)/((int(height)/100)**2) print("{:.2f}".format(bmi))
Python3
2021-12-19
1
326
题解 | #总成绩和平均分计算#
数值计算 score1,score2,score3=input().split(" ") total_score=float(score1)+float(score2)+float(score3) avg_score=total_score/3 print("{:.2f} {:.2f}".forma...
Python3
2021-12-18
1
496
题解 | #时间转换#
数值计算 time=input() hour=int(time)//3600 minute=int(time)//60-hour*60 second=int(time)%60 print("{} {} {}".format(hour,minute,second))
Python3
2021-12-18
0
320
首页
上一页
1
2
3
4
下一页
末页