涛哥比较无聊
涛哥比较无聊
全部文章
题解
归档
标签
去牛客网
登录
/
注册
涛哥比较无聊的博客
全部文章
/ 题解
(共3篇)
题解 | #名字的漂亮度#
while True: try: m = int(input()) for s in range(m): name = input() result = 0 lists = list(se...
Python3
2021-10-23
0
386
题解 | #在字符串中找出连续最长的数字串#
import re while True: try: string = input() lists = re.findall('\d+', string) lens = max([int(len(x)) for x in lists]) ...
Python3
2021-10-23
24
1462
题解 | #蛇形矩阵#
找到值与行列的关系,即 value=(i+j-2)*(i+j-1)/2+j,i,j是所属行与列。然后判定换行的时机,即j=N-i+1时,所属行已排满,换行 while True: try: &n...
Python3
2021-10-19
35
3728