牛客969573159号
牛客969573159号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客969573159号的博客
全部文章
/ 题解
(共44篇)
题解 | #配置文件恢复#
while True: try: s = input().split() if len(s) == 1 and s != '': if s[0] == 'reset'[0:len(s[0])]: prin...
Python3
2021-10-08
0
517
题解 | #查找两个字符串a,b中的最长公共子串#
while True: try: #获取输入数据 s1 = input() s2 = input() #获取短字符串和长字符串 short,long = (s1,s2) if len(s1)<len(s2)...
Python3
2021-10-08
0
431
题解 | #MP3光标位置#
while True: try: #获取歌曲数量 n1 = int(input()) #获取指令 s1 = input() #构建字典 d = {'D':+1,'U':-1} #设...
Python3
2021-10-08
0
462
题解 | #DNA序列#
while True: try: #获取输入序列 x1 = input() #获取长度N N = int(input()) #设置计数初值 d= {} for n in range...
Python3
2021-10-07
0
551
题解 | #查找输入整数二进制中1的个数#
#将一个整数转化为二进制数 def fun1(x): ans =[] while x > 0: ans.append(x % 2) x = x // 2 return ans while True: try: x...
Python3
2021-10-06
0
489
题解 | #查找组成一个偶数最接近的两个素数#
#求出小于一个数所有的素数 def fun1(x): ans = [] for n in range(2,x): for m in range(2,n): if n % m == 0: break ...
Python3
2021-10-06
1
665
题解 | #找出字符串中第一个只出现一次的字符#
while True: try: #获取输入字符串 x1 = input() #定义标签 flag = 0 d = {} for word in x1: ...
Python3
2021-10-06
0
512
题解 | #输入n个整数,输出其中最小的k个#
while True: try: x1 = input().split() n = int(x1[0]) k = int(x1[1]) x2 = list(map(int,input().split())) x3...
Python3
2021-10-06
0
551
题解 | #高精度整数加法#
str1 = '1 2 3 4 5 6 7 8 9 0' while True: try: #获取输入的两个字符串 x1 = input() x2 = input() #定义标签来判断输入数据是否合法 flag ...
Python3
2021-10-06
1
810
题解 | #完全数计算#
#求一个数所有的约数 def fun1(x): list1 = [] for k in range(1,x): if x % k == 0: list1.append(k) return list1 while True: t...
Python3
2021-10-06
7
883
首页
上一页
1
2
3
4
5
下一页
末页