lZxxxxxx
lZxxxxxx
全部文章
题解
归档
标签
去牛客网
登录
/
注册
lZxxxxxx的博客
全部文章
/ 题解
(共18篇)
题解 | #名字的漂亮度#
while True: try: n = int(input())  ...
Python3
2021-11-21
4
444
题解 | #统计字符#
while True: try: s = input() &nbs...
Python3
2021-11-20
0
350
题解 | #求小球落地5次后所经历的路程和第5次反弹的高度#
while True: try: num = int(input()) &nb...
Python3
2021-11-19
0
307
题解 | #统计每个月兔子的总数#
def fib(n): #递归函数 if n < 3: return 1 &n...
Python3
2021-11-19
0
368
题解 | #字符串加密#
import string while True: try: key=input() s=input() a=string.ascii_lowercase #获得小写字母 b=string.ascii_uppercase #获得...
Python3
2021-11-19
0
337
题解 | #图片整理#
while 1: try: s = input() &...
Python3
2021-11-14
0
332
题解 | #整数与IP地址间的转换#
def iptoint(s): ip_list=s.strip().split('.') n='' for i in ip_list: n+=bin(int(i))[2:].zfill(8) result=int(n,2) return res...
Python3
2021-11-14
0
360
题解 | #合唱队#
def DPPPPPPPPPP(l): LIS=[1]*len(l) for i in range(1,len(l)): for j in range(i): if l[i]>l[j]: LIS[i]=ma...
Python3
2021-11-12
15
2207
首页
上一页
1
2
下一页
末页