牛客857079027号
牛客857079027号
全部文章
分类
未归档(1)
题解(60)
归档
标签
去牛客网
登录
/
注册
牛客857079027号的博客
全部文章
(共52篇)
题解 | #高精度整数加法#
while True: try: a, b = input(), input() c, d = int(a), int(b) s = c+d print(s) except: break
Python3
2021-12-17
0
289
题解 | #完全数计算#
思路:对输入范围内每个数求因数,再对因数求和比较,如果是完全数,存在一个空列表里,最后输出列表长度 while True: try: a = int(input()) res = [] for j in range(1, a...
Python3
2021-12-17
7
616
题解 | #统计每个月兔子的总数#
找规律:第n个月的兔子总数是第n-1个月和n-2个月的总和,递归法可解 while True: try: n = int(input()) def gs(n): if n==1 or n==2: #递归出口 ...
Python3
2021-12-17
0
312
题解 | #字符个数统计#
while True: try: a = input() b = set(a) #提取a中不重复的字符 print(len(b)) except: break
Python3
2021-12-17
0
314
题解 | #提取不重复的整数#
a = int(input()) #接收整型输入 b = str(a)[::-1] #字符串反转 res = [] #建立空结果列表 for i in b: #按顺序写入res if i not in res: res.append(i) print(''.join(res...
Python3
2021-12-17
4
411
题解 | #质数因子#
接上文,开方的思路:如果一个数不是素数是合数, 那么一定可以由两个自然数相乘得到, 其中一个大于或等于它的平方根,一个小于或等于它的平方根。并且成对出现。 num = int(input()) def getprime(n): i = 2 while i * i <= n:...
Python3
2021-12-17
0
346
题解 | #质数因子#
有大数例子超时,可能开方的思路更好 while True: try: a = int(input()) res = [] for i in range(2, a//2+1): #判断到一半即可 whil...
Python3
2021-12-17
0
382
题解 | #找出字符串中第一个只出现一次的字符#
while True: try: #只有存在不存在出现次数为1的字符这两种情况 a = input() d = {} res = [] for i in a: d[i] = a.count(i) ...
Python3
2021-12-16
12
629
题解 | #查找两个字符串a,b中的最长公共子串#
while True: try: a = input() b= input() res = [] #先找到所有公共子串,再返回最大子串 #用短的输入字符串的子串和长的比较,这样按顺序写入的是短串中的子串,max会...
Python3
2021-12-16
0
383
题解 | #字符串通配符#
import re while True: try: a = input() b = input() a = a.lower() b = b.lower() if a.isalpha() and...
Python3
2021-12-16
1
516
首页
上一页
1
2
3
4
5
6
下一页
末页