tanglin3438
tanglin3438
全部文章
分类
读书笔记(1)
题解(63)
归档
标签
去牛客网
登录
/
注册
tanglin3438的博客
全部文章
(共63篇)
题解 | #求解立方根#
import sys a = 1/3 for n in sys.stdin: n = float(n) data = abs(n)**a if n > 0: print("%.1f" % data) else: print("-...
Python3
数学
2022-05-25
0
364
题解 | #杨辉三角的变形#
n = int(input()) alt=[2,3,2,4] #发现规律,从第三行开始2324循环 if n < 3: print(-1) if n>=3: print(alt[(n-3)%4]) #所以对4求余,映射到上面alt列表中
Python3
字符串
数组
2022-05-03
0
338
题解 | #记票统计#
while True: try: m = int(input()) ListM = input().split() n = int(input()) ListN = input().split() if not ...
Python3
字符串
数组
2022-05-03
0
508
题解 | #记负均正#
while True: try: n = int(input()) listNum = list(map(int, input().split())) # 先转换成数组,再把数据转换成int类型,因为map函数返回的对象,所以需要list再转换成列表 ...
Python3
字符串
数组
2022-05-02
0
362
题解 | #字符串通配符#
import re while True: try: str1 = input() str2 = input() # 依题意,能被*和?匹配的字符仅由英文字母和数字0到9组成,即对应[a-zA-Z0-9] # ...
Python3
字符串
2022-05-02
2
526
题解 | #百钱买百鸡问题#
while True: try: a=input() for k in range(4): x = 4 * k y = 25 - 7 * k z = 100 - x - y ...
Python3
字符串
2022-05-01
0
413
题解 | #计算日期到天数转换#
while True: try: MonthsToDays = [0,31,28,31,30,31,30,31,31,30,31,30] #12月,只需要加上11月的总天数,而1月就是0 years, months, days = map(int, in...
Python3
字符串
2022-05-01
0
502
题解 | #查找输入整数二进制中1的个数#
while True: try: nums = str(bin(int(input())))[2:] #输入-> 转换成正数 -> 转换成二进制数 -> 转换成字符串 -> 值保留二进制0b后面的数值,当然,这里也可以不用删除,因为下面是统计字符1出现...
Python3
字符串
2022-05-01
0
308
题解 | #求最大连续bit数#
while True: try: nums = str(bin(int(input())))[2:] counts = 0 MaxCount = 0 for x in nums: if x == "1":...
Python3
字符串
2022-05-01
0
360
题解 | #求最大连续bit数#
while True: try: nums = str(bin(int(input())))[2:] counts = 0 MaxCount = 0 for x in nums: if x == "1":...
Python3
字符串
2022-05-01
0
307
首页
上一页
1
2
3
4
5
6
7
下一页
末页