Lchenglong
Lchenglong
全部文章
分类
未归档(1)
题解(26)
归档
标签
去牛客网
登录
/
注册
Lchenglong的博客
全部文章
(共23篇)
题解 | #合并表记录#
python 解法 while True: try: n = int(input()) res = {} for i in range(n): index, value = map(int,input().split()...
Python3
2022-01-04
0
378
题解 | #等差数列#
等差数列求和,直接用公式即可。 while True: try: n = int(input()) print( 2*n + n*(n-1) * 3 //2) except: break
Python3
2022-01-04
0
466
题解 | #密码强度等级#
while True: try: k = input() count_f = 0 input_list = [i for i in map(int,input().split())] pos_list = [] ...
Python3
2022-01-04
2
636
首页
上一页
1
2
3
下一页
末页