大方的杰克希望被offer砸中
大方的杰克希望被offer砸中
全部文章
分类
归档
标签
去牛客网
登录
/
注册
大方的杰克希望被offer砸中的博客
全部文章
(共40篇)
题解 | 三角形判断
while True: try: a,b,c=map(int,input().split()) if a+b>c and a+c>b and b+c>a and a-b<c and a-c<b and b-c < a: ...
2025-12-09
0
7
题解 | 牛牛的通勤
d = int(input()) ft = d ct = 10 + d / 10 if ft < ct: print('w') else: print('v')
2025-12-09
0
7
题解 | 牛牛的金币
x,y = map(int,input().split()) x1,y1 = map(int,input().split()) if x == x1 and y+1 == y1: print('u') elif x == x1 and y-1 == y1: print('d') el...
2025-12-09
0
6
题解 | 牛牛的判断题
x,l,r = map(int,input().split()) if x >= l and x <= r: print('true') else: print('false')
2025-12-09
0
7
题解 | 及格分数
x = int(input()) if x >= 60: print('Pass') else: print('Fail')
2025-12-09
0
8
题解 | 小乐乐排电梯
n = int(input()) s = 4 * (n // 12 ) + 2 print(s)
2025-12-03
0
12
题解 | 开学?
x,n = map(int,input().split()) d = x + n if d <= 7: print(d) elif d % 7 == 0: print(7) else: print(d % 7)
2025-12-03
0
11
题解 | kiki算数
a,b = map(int,input().split()) n = a + b #获取个位 g = n - int(n/10)*10 #获取十位 s = n - int(n/100)*100 -g if n < 100: print(n) else: print(s + g)
2025-12-03
0
8
题解 | 牛牛的并联电路
a,b = map(int,input().split()) c = 1 / a + 1 / b d = 1 / c print(f'{d:.1f}')
2025-12-03
0
11
题解 | 牛牛的线段
import sys x1,y1 = map(int,input().split()) x2,y2 = map(int,input().split()) d = (x1 - x2) ** 2 + (y1 - y2) ** 2 print(d)
2025-12-03
0
8
首页
上一页
1
2
3
4
下一页
末页