yangdongaaa
yangdongaaa
全部文章
分类
Python题解(66)
SQL题解(5)
声明(1)
题解(13)
归档
标签
去牛客网
登录
/
注册
yangdongaaa的博客
全部文章
(共62篇)
题解 | #字符串排序#
while True: try: s = input() a = '' for i in s: if i.isalpha(): # 判断是不是英文字母 a += i b ...
Python3
2022-04-11
0
285
题解 | #公共子串计算#
a = input() b = input() s = [] if len(a) > len(b): a, b = b, a # a存短的字符串 n = len(a) for i in range(0, n): for j in range(0,i + 1): ...
Python3
字符串
数组
2022-04-08
0
201
题解 | #走方格的方案数#
def jc(n): re = 1 for i in range(1, n + 1): re = re * i return re n, m = map(int, input().split()) print(int(jc(n + m)/(jc(n)*jc(...
Python3
2022-03-30
0
331
题解 | #计算日期到天数转换#
s = input() y, ***p(int, s.split()) re = 0 m1 = 31 m2 = 0 # 判断是不是闰年 if str(y)[-2:] == '00': # 判断世纪闰年 if y % 400 == 0: m2 = 29 else: ...
Python3
2022-03-29
0
265
题解 | #尼科彻斯定理#
# 首先读懂题,找规律 # n = 1,时为 1 # n = 2,时为 3+5 # n = 3,时为 7+9+11 # n = 4,时为 13+15+17+19 # 对比不难看出,结果的起始值为:n*(n-1) + 1,终止值为:n*(n+1) - 1 # 而由于结果是连续的奇数,则只需遍历起始值和...
Python3
2022-03-29
0
227
题解 | #整型数组合并#
# 将两个整型数组按照升序合并 #并且过滤掉重复数组元素。set(obj) # 输出时相邻两数之间没有空格 while True: try: m1_cn = int(input()) m1 = input().split() m2_cn = ...
Python3
2022-03-29
0
478
题解 | #字符串字符匹配#
a = input() b = input() num = 0 for i in a: if i in b: num += 1 if num == len(a): print('true') else: print('false')
Python3
2022-03-29
0
251
题解 | #最长回文子串#
in_str = input() # 存储最长回文字串的值,最小为1,因为任意单个字母都是回文字串 re = 1 for i in range(0, len(in_str) -1 ): # 不包含最后一个字母 for j in range(i + 1, len(in_st...
Python3
2022-03-29
0
200
题解 | #密码强度等级#
in_str = input() fin_score = 0 #统计长度 len_score = 0 if len(in_str) <= 4: len_score = 5 elif 5 <= len(in_str) <= 7: len_score = 10 eli...
Python3
2022-03-29
0
250
题解 | #记票统计#
n = int(input()) hx = input().split() tol_num = int(input()) tp = input().split() inval = 0 dp = [] for i in hx: x = 0 for j in tp: if...
Python3
2022-03-29
0
205
首页
上一页
1
2
3
4
5
6
7
下一页
末页