qwertre
qwertre
全部文章
分类
归档
标签
去牛客网
登录
/
注册
qwertre的博客
全部文章
(共2篇)
题解 | 简写单词
a=list(map(str,input().split())) for i in a: b=list(i) c=b[0] print(c.upper(),end='')
2025-11-21
0
18
题解 | 绕距
a,b=map(int,input().split()) c,d=map(int,input().split()) E=((a-c)**2+(b-d)**2)**0.5 M=((a-c)**2)**0.5+((b-d)**2)**0.5 Z=((E-M)**2)**0.5 print(Z)
2025-10-17
2
31