qwertre
qwertre
全部文章
分类
归档
标签
去牛客网
登录
/
注册
qwertre的博客
全部文章
(共3篇)
题解 | 小红的正整数构造
l,r,x=map(int,input().split()) a=[] ans=[] for i in range(l,r+1): a.append(i) for j in a: if j%x==0: print(j) break else: ...
2026-02-01
0
13
题解 | 简写单词
a=list(map(str,input().split())) for i in a: b=list(i) c=b[0] print(c.upper(),end='')
2025-11-21
0
31
题解 | 绕距
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
48