BSF
BSF
全部文章
题解
归档
标签
去牛客网
登录
/
注册
BSF的博客
全部文章
/ 题解
(共82篇)
题解 | #单词倒排#
s = input() w, lst = '', [] for i, c in enumerate(s): if 65 <= ord(c) <= 90 or 97 <= ord(c) <= 122: w += c if i == len...
Python3
2021-10-14
0
388
题解 | #质数因子#
import math num = int(input()) for n in range(2, int(math.sqrt(num))+1): while num&n...
Python3
2021-10-09
1
544
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页