人生苦短,但求成长
人生苦短,但求成长
全部文章
题解
归档
标签
去牛客网
登录
/
注册
人生苦短,但求成长的博客
全部文章
/ 题解
(共150篇)
题解 | #二维数组操作#简单粗暴
while True: try: m, n = map(int, input().split()) x1, y1, x2, y2 = map(int, input().split()) x = int(input()) y = int(input()) a, ...
Python3
2022-02-18
1
0
题解 | #将真分数分解为埃及分数#递归YYDS
每次得到分子为1的分母k = m//n + 1 再把下次进入函数的n和m求出来 def fun(n, m): if n == 1: res.append(m) return res if m % n == 0: res.append(m // n) return re...
Python3
2022-02-18
9
1433
题解 | #字符串字符匹配#这难度都是瞎写的吧
while True: try: str1 = input() str2 = input() for c in str1: if c not in str2: print('false') break e...
Python3
2022-02-18
7
631
题解 | #整型数组合并#这题为什么是较难?
while True: try: m = int(input()) list1 = list(map(int, input().split())) n = int(input()) list2 = list(map(int, input().split())) ...
Python3
2022-02-18
2
539
题解 | #火车进站#学习大佬的递归
def fun(in_list, stack, out_list): if len(in_list) == 0 and len(stack) == 0: res.append(out_list) # 有等待进站的火车时 if len(in_list) > 0: fun(in_l...
Python3
2022-02-15
2
1275
题解 | #尼科彻斯定理#简单粗暴
while True: try: m = int(input()) print('+'.join([str(i) for i in range(m * m - m + 1, m * m + m, 2)])) except: break
Python3
2022-02-14
4
1016
题解 | #公共子串计算#方法二:动态规划
def fun(str1, str2): m = [[0 for i in range(len(str2) + 1)] for j in range(len(str1) + 1)] max_sub_len = 0 for i in range(len(str1)): for j in ra...
Python3
2022-02-14
3
381
题解 | #公共子串计算#双指针的方法
while True: try: str1, str2 = input(), input() # 先把str1设为短的字符串 if len(str1) >= len(str2): str1, str2 = str2, str1 substr = ...
Python3
2022-02-14
3
314
题解 | #参数解析#为什么没人考虑先用引号分割呢
while True: try: str_input = input() # 判断是否有引号 if str_input.count('"') == 0: print(len(str_input.split())) for i in str_in...
Python3
2022-02-14
9
2085
题解 | #计算日期到天数转换#这个速度好像不快
while True: try: year, month, day = [int(i) for i in input().split()] total_days = day for i in range(2, month + 1): if i == ...
Python3
2022-02-14
8
915
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页