QuantSorossvp
QuantSorossvp
全部文章
题解
归档
标签
去牛客网
登录
/
注册
QuantSorossvp的博客
全部文章
/ 题解
(共31篇)
题解 | #KiKi算期末成绩#
a,b,c,d=(map(int,input().split(' '))) # 四个成绩分别赋值 # print(a,b,c,d) totalscore=a*0.2+b*0.1+0.2*c+0.5*d print('{:.1...
Python3
2022-03-30
0
284
题解 | #小乐乐改数字#
n=(input()) b=[] # print(type(n)) for i in iter(n): if int(i)%2==1: # 如果是...
Python3
2022-03-29
0
320
题解 | #小乐乐排电梯#
n=int(input()) wait=n//12 # 需要等wait个上下 print(4*wait+2) # 需要等待的时间
Python3
2022-03-27
0
419
题解 | #小乐乐定闹钟#
start,keep=input().split(' ') # 输入开始时间和持续时间 keep=int(keep) hour,minute=map(int,start.split(':...
Python3
2022-03-27
0
301
题解 | #牛牛的并联电路#
a,b=map(int,input().split(' ')) # 确定a和b gap=b-a # 差值 print(b+gap)
Python3
2022-03-25
0
367
题解 | #牛牛的水杯#
h,r=map(int,input().split(' ')) # 分别赋值h,r unit=3.14*h*(r**2) # 每杯水的 # 1毫升=1立方厘米;&nbs...
Python3
2022-03-24
0
383
题解 | #牛牛的并联电路#
r1,r2=map(int,input().split(' ')) # 输入,按空格分开,以int类型赋值给r1,r2 value=1/((1/r1)+(1/r2)) &nbs...
Python3
2022-03-24
0
378
题解 | #KiKi和酸奶#
xxx=input() n,h,m=map(int,xxx.split(' ')) # 输入分别放进n,h,m used=0 &...
Python3
2022-03-23
0
311
题解 | #统计成绩#
lis=[] # 新建lis列表 while True:  ...
Python3
Python3
2022-03-19
0
294
题解 | #时间转换#
seconds=int(input()) hours=seconds//3600 # seconds满3600秒的整数 mins=seconds//60-hours*60 # 总共多少分钟-已经形成小时的分钟数 sec=seconds%60 # 不满60的余数秒数 print(...
Python3
2022-03-17
0
319
首页
上一页
1
2
3
4
下一页
末页