牛客940206908号
牛客940206908号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客940206908号的博客
全部文章
/ 题解
(共31篇)
题解 | #句子逆序#
思路见注释: while True: try: s = input().split(' ') #先把句子切分成单词列表 len_s = len(s) for i in range(len_s): #从反方向分别打印列表里的单词 ...
Python3
2021-10-08
5
2011
题解 | #自守数#
#居然一次性通过了。。。还以为要处理0的特殊情况呢。。。 while True: try: n = int(input()) count = 0 for i in range(n+1): #下面这部分主要是计划当前数据的...
Python3
2021-10-08
0
462
题解 | #质数因子#
#主要是限定搜索的范围,不然严重超时。 #如果暴力地从2除到数本身,本地花了将近600s。(2000000014) # 缩小范围到当前值的平方根,本地高度18ms。(2000000014) while True: try: num_in = int(input()) ...
Python3
2021-10-08
22
1735
题解 | #合法IP#
直接见注释 while True: try: s = input().split('.') result = 'YES' for i in s: if int(i) < 0 or int(i) > 255: ...
Python3
2021-10-08
6
1503
题解 | #字符统计#
while True: try: s = input() result = {} for i in s: if i not in result: result[i] = s.count(i...
Python3
2021-10-08
0
489
题解 | #字符统计#
while True: try: s = input() result = {} for i in s: if i not in result: result[i] = s.count(i...
Python3
2021-10-08
0
509
题解 | #查找两个字符串a,b中的最长公共子串#
#用动态规划来解 # while True: try: s1 = input() s2 = input() m = len(s1) n = len(s2) #使s1为最短长度字符串,在搜索过程后,处于外循环,可以...
Python3
2021-10-07
18
1126
题解 | #从单向链表中删除指定值的节点#
写注释不小心错删了一个缩进,又调了半天。神坑。 #先用列表来解吧 # 要么不要转int,直接input().split(' '),如果要用map转int的话,就要用list再转化 #因为map在Python 3.x 返回迭代器 ##先把第一个节点加上 ##按顺序取出后续节点的值,插入指定前节点之后 ...
Python3
2021-10-07
0
402
题解 | #表示数字#
一次性免调试通过,思路见注释 while True: try: s = input() s_o = '' char_pre = '' for i in s: #遍历字符串 if i.isdigit() :...
Python3
2021-10-07
70
3954
题解 | #找出字符串中第一个只出现一次的字符#
直接见注释 while True: try: str1 = input() Flag = False for i in str1: #直接按顺序遍历字符串的每一个字符 if str1.count(i) == 1: #利用...
Python3
2021-10-07
3
647
首页
上一页
1
2
3
4
下一页
末页