番茄蛋
番茄蛋
全部文章
分类
题解(27)
归档
标签
去牛客网
登录
/
注册
番茄蛋的博客
全部文章
(共24篇)
题解 | #最长回文子串#
#暴解 def huiwen(lists,left,right): while left < right :  ...
Python3
2022-03-10
0
420
题解 | #二维数组操作#
读懂题目就不难 while True: try: m,n = map(int, input().split())...
Python3
2022-03-10
0
344
题解 | #百钱买百鸡问题#
#9命,调了好久终于把运行时间调到规定内了🤣 def nk(count,n,m): if sum(count) == n and len(count) == m:...
Python3
2022-03-06
0
355
题解 | #计算日期到天数转换#
常规解法 year , month , data = map(int, input().split()) month_data = [31,28,31,30,31,30,31,31,30,31,30,31] i...
Python3
2022-03-06
0
322
题解 | #百钱买百鸡问题#
#我震惊,这输入没看懂。 while True: try: n = int(input()) &nbs...
Python3
2022-03-06
0
275
题解 | #查找输入整数二进制中1的个数#
#菜鸡不知道bin方法,这题直接模拟二进制过程了,不断对n除2然后累加1,由于二进制第一位如果是0就省略的特性,所以第一位永远是1,count从1加起。 while True: try: &nb...
Python3
2022-03-06
6
535
题解 | #放苹果#
#模仿大佬思路,盘子和苹果其中一个为0或1时都是一种解法,然后分别从m>n以及m<n出发,m>n或m=n则用 #盘子数-1的想法往下递归,m<n则用n=m的想法递归 def apple(m,n): if m&...
Python3
2022-03-06
0
453
题解 | #查找组成一个偶数最接近的两个素数#
def su(x): su = 0 for i in range(2,x): &nb...
Python3
2022-03-04
0
351
题解 | #两种排序方法#
#主要还是按长度排序和字典排序两种算法,字典排序可以用内置sorted来做,长度排序由于不知道key,就自己手写一个冒泡来做。由于python函数def传list的参时传的是形参(指针),所以在判断那里卡了一会,解决方法是先copy一份list,再比较判断。 def mysort(l,a)...
Python3
2022-03-02
0
460
题解 | #字符串操作#
卡了一下输入,其他就是常规写法 n,m = map(int, input().split()) s = input() ss = [] for i in s: &n...
Python3
2022-03-01
1
506
首页
上一页
1
2
3
下一页
末页