牛客797476880号
牛客797476880号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客797476880号的博客
全部文章
/ 题解
(共15篇)
题解 | #进制转换#
''' python将16进制转为10进制可以用int('hex型',16) 八进制转十进制int('八进制型',8) 八进制或十六进制或10进制装二进制直接调用 bin(任意进制) ''' while True: try: s=input() print(...
Python3
2021-09-21
201
10820
题解 | #求最大连续bit数#
while True: try: import re i=1 B=[] string=bin(int(input())) l=string.count('1') for i in range(1,...
Python3
2021-09-21
0
398
题解 | #统计大写字母个数#
while True: try: import re s=input() pattern=r'[A-Z]' NEW=re.findall(pattern, s) new=''.join(NEW) ...
Python3
2021-09-21
1
449
题解 | #走方格的方案数#
while True: try: n,m=map(int,input().split()) c=[[1 for i in range(m+1)] for j in range(n+1)] #初始化边界全为1 for i in range(1,n...
Python3
2021-09-21
0
437
题解 | #等差数列#
while True: try: s=int(input()) w=3*s+2 L=range(2,w,3) print(sum(L)) except: break
Python3
2021-09-21
53
3360
题解 | #字符逆序#
while True: try: string1=list(map(str,input())) string1.reverse() s=''.join(string1) print(s) except: ...
Python3
2021-09-21
0
412
题解 | #配置文件恢复#
''' 自己写的用正则匹配太low了,看了@中年美少女写的切片思想佩服了,另外不用字典免去了双层循环的做法,偷来粘在这里供大家欣赏。 ''' while True: try: m=input().strip().split() key=["reset...
Python3
2021-09-20
77
3991
题解 | #查找输入整数二进制中1的个数#
while True: try: nlist=list(map(int,input().split())) for n in nlist: print(str(bin(n)).count('1')) except: ...
Python3
2021-09-20
6
849
题解 | #完全数计算#
while True: try: n=int(input()) L=[] for i in range(1,n): p=0 for y in range(1,i): ...
Python3
2021-09-20
32
5291
题解 | #杨辉三角的变形#
''' 就是先观察偶数出现的规律,多写个***行,能找出来偶数随着行号的递增出现的规律是 -1 -1 (2 3 2 4) (2 3 2 4).....(2 3 2 4) 这题坑的是千万别去按照杨辉三角的模式去套成数学模型,那估计一个小时都写不完(本人数学不好,掉进去后列了一堆公式想要推算第n行的内容...
Python3
2021-09-20
0
592
首页
上一页
1
2
下一页
末页