lZxxxxxx
lZxxxxxx
全部文章
分类
题解(18)
归档
标签
去牛客网
登录
/
注册
lZxxxxxx的博客
全部文章
(共18篇)
题解 | #Redraiment的走法#
import bisect #引入二分法 # 最大上升子序LIS def lengthOfLIS(lst): arr = [lst[0]]&n...
Python3
2021-11-22
7
906
题解 | #记负均正II#
# def jug(n): # if n < 0: # return ...
Python3
2021-11-22
0
384
题解 | #求解立方根#
import sys a = 1/3 for n in sys.stdin: n = float(n) if n&...
Python3
2021-11-22
32
3330
题解 | #求最小公倍数#
在大的数的倍数里面去找最小的能整除另外一个数的数,就是最小公倍数,按照大的来找,循环次数能够降到很少,提升效率 while True: try: a,b=list(map(int, input().split()))...
Python3
2021-11-22
159
6166
题解 | #DNA序列#
def ratio(s): return (s.count("G")+s.count("C"))/len(s) while True: try: &n...
Python3
2021-11-21
0
329
题解 | #高精度整数加法#
while True: try: n1 = int(input()) &nbs...
Python3
2021-11-21
3
1280
题解 | #完全数计算#
def perfectNumber(n): s = 0 for i in range(1,int(n**0.5)+1):  ...
Python3
2021-11-21
0
358
题解 | #挑7#
while True: try: n=int(input())  ...
Python3
2021-11-21
0
336
题解 | #四则运算#
s = input() l = ["{","}","[","]"] for i in range(4): if l[i] == "{"&nbs***bs...
Python3
2021-11-21
0
441
题解 | #从单向链表中删除指定值的节点#
while True: try: l = input().split() &n...
Python3
2021-11-21
0
342
首页
上一页
1
2
下一页
末页