牛客732405425号
牛客732405425号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客732405425号的博客
全部文章
(共3篇)
题解 | 【模板】巴什博弈
T=int(input()) res=[] for _ in range(T): n,m=list(map(int,input().split())) if n%(m+1)!=0: res.append("YES") else: ...
2025-12-17
0
16
题解 | while
n=input() b=['w','h','i','l','e'] count=0 for i in range(5): if n[i] not in b[i]: count+=1 print(count)
2025-12-14
0
17
题解 | 牛牛学立体
a,b,c=list(map(int,input().split())) s=2*(a*b+b*c+c*a) v=a*b*c print(s) print(v)
2025-12-11
0
17