不错就是对
不错就是对
全部文章
题解
归档
标签
去牛客网
登录
/
注册
不错就是对的博客
Work hard and be nice to people.
全部文章
/ 题解
(共240篇)
题解 | #牛牛的计划#
BC72 牛牛的计划 思路: step1:输入两行数字; step2:判断并打印对应结果; 代码如下: a1,b1,c1 = list(map(int,input().split())) a2,b2,c2 = list(map(int,input().split())) if a2 < a1 ...
Python3
2022-03-25
3
467
题解 | #三角形判断#
BC71 三角形判断 思路: step1:输入三边; step2:判断形状;打印输出; 代码如下: while True: try: a,b,c = list(map(int,input().split())) if a+b>c and a+c>b...
Python3
2022-03-25
0
347
题解 | #计算单位阶跃函数#
BC70 计算单位阶跃函数 思路: step1:输入一个数;判断输出打印; 代码如下: while True: try: a = int(input()) if a > 0: print('1') elif a =...
Python3
2022-03-25
0
448
题解 | #HTTP状态码#
BC69 HTTP状态码 思路: step1:创建字典;输入字符,打印对应单词; 代码如下: while True: try: dic = {'200':'OK','202':'Accepted','400':'Bad Request','403':'Forbidden','...
Python3
2022-03-25
0
331
题解 | #牛牛的一周#
BC68 牛牛的一周 思路: step1:创建字典;输入字符,打印对应单词; 代码如下: dic = {'1':'Monday','2':'Tuesday','3':'Wednesday','4':'Thursday','5':'Friday','6':'Saturday','7':'Sunday'...
Python3
2022-03-25
5
480
题解 | #牛牛的金币#
BC67 牛牛的金币 思路: step1:输入两点坐标;判断并输出结果; 代码如下: x,y = list(map(int,input().split())) x1,y1 = list(map(int,input().split())) if (x-x1) == 1: print('l') ...
Python3
2022-03-25
1
431
题解 | #牛牛的通勤#
BC66 牛牛的通勤 思路: step1:输入距离;计算两个时间;比较输出打印; 代码如下: n = int(input()) time1 = n time2 = 10 + n/10 if time1 > time2: print('v') else: print('w')
Python3
2022-03-25
2
416
题解 | #计算商品打折结算金额#
BC65 计算商品打折结算金额 思路: step1:输入金额;按照要求判断所属区间;格式化输出; 代码如下: n = float(input()) if n >= 5000: money = n*0.6 elif n >= 2000: money = n*0.7 elif...
Python3
2022-03-25
1
362
题解 | #牛牛的快递#
BC64 牛牛的快递 思路: step1:输入两个字符;并将a转化为浮点型; step2:计算金额; step3:判断是否需要加急; step4:计算总金额; 代码如下: a,b = input().split() a = float(a) if a <= 1: money = 20 ...
Python3
2022-03-25
0
350
题解 | #网购#
BC63 网购 思路: step1:输入四个数; step2:如果bc都为11,a乘0.7;如果bc都为12,a乘0.8; step3:如果d为1,a-50; step4:如果a<=0,输出0.00;否则输出结果; 代码如下: a,b,c,d = list(map(float,input()....
Python3
2022-03-25
0
351
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页