在走神的斑马很想奋斗
在走神的斑马很想奋斗
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在走神的斑马很想奋斗的博客
全部文章
(共33篇)
题解 | 素数判断
import math def sushu(n): if n <= 1: return False if n <= 3: return True if n % 2 == 0 or n % 3 == 0: retu...
2025-11-15
0
15
题解 | 素数判断
import math def is_prime(n): if n <= 1: return False if n <= 3: return True if n % 2 == 0 or n % 3 == 0: r...
2025-11-14
0
17
题解 | 绕距
from math import sqrt x1,y1=map(int,input().split()) x2,y2=map(int,input().split()) de=sqrt((x1-x2)**2+(y1-y2)**2) dm=abs(x1-x2)+abs(y1-y2) derta=abs(...
2025-11-14
0
16
首页
上一页
1
2
3
4
下一页
末页