燕草如碧
燕草如碧
全部文章
分类
题解(60)
归档
标签
去牛客网
登录
/
注册
燕草如碧的博客
全部文章
(共63篇)
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
0
328
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
0
272
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
0
280
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
1
282
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
1
295
题解 | #矩阵乘法计算量估算#二叉树解决
#二叉树那个没整形数据,我整形了下可以用了 from string import ascii_uppercase input_seq = [ '3', '50 10', ...
Python3
2022-07-16
1
355
题解 | #24点游戏算法#
#参考大佬穷举的代码,做了优化,只选取不重复的两个数进行递归 def dfs(nums): if not nums: retu...
Python3
2022-07-12
2
538
题解 | #输入n个整数,输出其中最小的k个#
m,n = map(int,input().split()) print(' '.join(map(str,sorted(list(map(int,input().split())))[0:n])))
Python3
2022-07-07
0
311
题解 | #四则运算#python经典一行系列
print(int(eval(input().translate(str.maketrans('[]{}', '()()'))))) 一行,表演完毕
Python3
2022-07-01
1
335
题解 | #判断两个IP是否属于同一子网#
大佬函数名掉了,补上 def int2bin(ipt): lst = list(map(int, ipt.split('.'))) res = '' for i in lst: a = bin(i)[2:] b = '0' * (8 - len...
Python3
Python3
2022-06-27
4
497
首页
上一页
1
2
3
4
5
6
7
下一页
末页