燕草如碧
燕草如碧
全部文章
分类
题解(60)
归档
标签
去牛客网
登录
/
注册
燕草如碧的博客
全部文章
(共66篇)
题解 | #输入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
题解 | #统计每个月兔子的总数#
抄作业 n=int(input()) r=1 a,b=1,1 for i in range(3,n+1): a,b=r,a r+=b print(r)
Python3
2022-06-26
0
216
题解 | #字符串合并处理#python numberone
python抄作业真香啊 import re def encrypt(x): if re.search('[0-9A-Fa-f]',x): return hex(int(bin(int(x,16))[2:].rjust(4,'0')[::-1],2))[2:].upper(...
Python3
2022-06-26
0
248
题解 | #字符串排序#
抄作业真香 str1 = input() a = '' for i in str1: if i.isalpha(): a+=i b = sorted(a,key=str.upper) c= '' index = 0 for i in range(len(str1)): ...
Python3
2022-06-25
0
292
题解 | #购物单#
抄作业真相,leetcode太卷了,还是牛客刷题有感觉 money,capacity = map(int ,input().split(" ")) money //=10 weight = [[0]*3 for _ in range(capacity+1)] satisfaction = [[0]*...
Python3
2022-06-25
2
637
题解 | #排序#b站mosh算法快排写法
js版本 /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 将给定数组排序 * @param arr int整型一维数组 待排序的数组 * @return int整型一维数组 */ function MySort( arr ) { ...
Python3
Javascript Node
Javascript V8
2022-06-25
0
403
题解 | #排序#python快排
mosh的java写法改Python class Solution: def MySort(self , arr: List[int]) -> List[int]: def quicksort(arr,left,right): if left&...
Python3
2022-06-24
0
297
题解 | #相差不超过k的最多数#没人写py?
没人写py? n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0 right = 0 max1 =0 sub = 0 while(right<len(lis)):...
Python3
2022-06-24
0
315
首页
上一页
1
2
3
4
5
6
7
下一页
末页