牛客873478221号
牛客873478221号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客873478221号的博客
全部文章
/ 题解
(共2篇)
题解 | #最长公共连续子串#
str1=input() str2=input() count_list=[] i=0 j=0 while i < len(str1): while j < len(str1): j+=1 ...
Python3
2022-06-14
0
317
题解 | #牛牛的朋友#
n = int(input()) nums = [int(i) for i in input().split(' ')] nums.sort() x=0 for i in range(n-2): for j in range(i+1,n-1): k=j+1 while k<n:...
Python3
2022-06-14
0
485