牛客857079027号
牛客857079027号
全部文章
分类
未归档(1)
题解(60)
归档
标签
去牛客网
登录
/
注册
牛客857079027号的博客
全部文章
(共58篇)
题解 | #求最小公倍数#
简单但超时... a, b = map (int, input().split()) res = [] for n in range(1, a*b+1): if n%a==0 and n%b==0: res.append(n) print(min(res))
Python3
2021-12-18
0
347
题解 | #等差数列#
while True: try: n = int(input()) a1=2 d= 3 s = n*a1+n*(n-1)*d/2 print(int(s)) except: break
Python3
2021-12-18
3
624
题解 | #求最大连续bit数#
while True: try: a = int(input()) b = bin(a) c = str(b) res = [0] for i in range(2, len(c)): f...
Python3
2021-12-18
0
271
题解 | #统计大写字母个数#
while True: try: a = input() res = 0 b = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T'...
Python3
2021-12-18
1
310
题解 | #计算日期到天数转换#
如果是整百年,需要被400整除才是闰年,不是整百年被4整除就是闰年 a = input() b, c, d = map(int,a.split(' ')) def m(b,c,d): if c == 1: print(d) elif c == 2: ...
Python3
2021-12-17
0
335
题解 | #查找组成一个偶数最接近的两个素数#
while True: try: a = int(input()) b = [] #质数判断 def prime(n): s = [] for i in rang...
Python3
2021-12-17
0
381
题解 | #高精度整数加法#
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
首页
上一页
1
2
3
4
5
6
下一页
末页