yangdongaaa
yangdongaaa
全部文章
分类
Python题解(66)
SQL题解(5)
声明(1)
题解(13)
归档
标签
去牛客网
登录
/
注册
yangdongaaa的博客
全部文章
(共62篇)
题解 | #四则运算#
s = input() s = s.replace("{", "(") s = s.replace("}", ")") s = s.replace("[", "(") s = s.replace("]", ")") print(int(eval(s)))
Python3
2022-04-20
0
210
题解 | #从单向链表中删除指定值的节点#
while True: try: s = list(map(int, input().split())) gs = s[0] sc = s[-1] kt = s[1] s = s[2:-1] lb...
Python3
2022-04-20
0
279
题解 | #将真分数分解为埃及分数#
#最简单的偷懒方法 while True: try: n, m = map(int, input().split('/')) if n == 1: print(str(n) + '/' + str(m)) elif m ...
Python3
2022-04-20
0
229
题解 | #火车进站#
# 定义全局变量,存储出站结果 re = [] def wso(wait, stack, out): if not wait and not stack: # 没有等待也没有进站的,则已经全部出站out,将结果存储在全局变量re中 re.append(' '.join(ma...
Python3
2022-04-20
0
337
题解 | #矩阵乘法计算量估算#
# 两个矩阵相乘,结果矩阵的行数取决去第一个矩阵的行数,列数取决于第二个矩阵的列数 # 设 第一个矩阵为 n 行,m 列,第二个矩阵为 x 行,y 列,则相乘得到 n 行,y 列的矩阵 # 乘法的计算次数为 n * m * y 次 # 两个大写字母的乘积用小写字母存储 islower or isup...
Python3
2022-04-19
0
408
题解 | #24点游戏算法#
def digui(arr,item): if item < 1: return False if len(arr) == 1: if arr[0] == item: return True else: ...
Python3
2022-04-19
0
218
题解 | #矩阵乘法#
x = int(input()) y = int(input()) z = int(input()) A = [] B = [] C = [[1] * z for _ in range(x)] for i in range(1,x + 1): A.append(list(map(int, i...
Python3
2022-04-18
0
253
题解 | #购物单#
# N 总钱数 # m 希望购买的物品个数 # 从第 2 行到第 m+1 行,第 j 行给出了编号为 j-1 的物品的基本数据,每行有 3 个非负整数 v p q # (其中 v 表示该物品的价格( v<10000 ), p 表示该物品的重要度( 1 ~ 5 ), q 表示该物品是主件还是附...
Python3
2022-04-18
0
243
题解 | #求解立方根#
n = float(input().strip()) if n == 0.0: print(0.0) elif n > 0.0: x = 1 while True: if x * x * x <= float(n): x +...
Python3
2022-04-15
0
231
题解 | #求最大连续bit数#
# 求一个二进制数的1的最大连续数 def lx(n): arr = [1] for i in range(1, len(n) + 1): if '1'* i in n: arr.append(i) return max(arr) ...
Python3
2022-04-15
0
229
首页
上一页
1
2
3
4
5
6
7
下一页
末页