牛客464844775号
牛客464844775号
全部文章
分类
题解(51)
归档
标签
去牛客网
登录
/
注册
牛客464844775号的博客
全部文章
(共45篇)
题解 | #合并表记录#
while True: try: n = int(input()) dic = {} while n &...
Python3
2021-12-04
0
358
题解 | #合并表记录#
while True: try: n = int(input()) dic = {} while n &...
Python3
2021-12-04
0
353
题解 | #单词倒排#
while True: try: line = input() for i in range(len(line)): ...
Python3
2021-12-02
0
413
题解 | #质数因子#
import math n = int(input()) l = [] for i in range(2,int(math.sqrt(n))+1): while n % i ==0: print(i,end=' ')...
Python3
2021-12-02
0
377
题解 | #记票统计#
while True: try: n = int(input()) n_name = input().split(' ') &nbs...
Python3
2021-12-02
0
376
题解 | #简单密码#
while True: try: line = input() ans = [] for i in li...
Python3
2021-12-02
0
305
题解 | #字符串排序#
while True: try: n = int(input()) l_n = [] while n: ...
Python3
2021-12-01
0
295
题解 | #句子逆序#
while True: try: line = list(input().split(' ')) print(' '.join(line[::-1])) &nb...
Python3
2021-12-01
8
553
题解 | #名字的漂亮度#
while True: try: N = int(input()) while N: &n...
Python3
2021-12-01
1
413
题解 | #在字符串中找出连续最长的数字串#
while True: try: line = list(input()) for i in range(len(line)): &...
Python3
2021-12-01
0
462
首页
上一页
1
2
3
4
5
下一页
末页