任致志
任致志
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
时空场景
Follow the heart ❤️ 心之所向 一往无前
全部文章
(共3篇)
题解 | #求最大连续bit数#
print(len(max(format(int(input()),'b').split("0"))))
Python3
数组
计数
2022-11-13
2
217
题解 | #密码强度等级#
# 分块 s = input() score = 0 # 一、长度 if len(s) >= 8: score += 25 elif&nbs...
Python3
字符串匹配
计数
数组
2022-11-10
0
258
题解 | #字符统计#
s = input() d = {} res = sorted(set(s)) # 提取出字母并排序 for i in res: d[i]&n...
字符串
计数
有序集合
计数排序
2022-06-03
0
274