深呼吸你可以的
深呼吸你可以的
全部文章
分类
题解(32)
归档
标签
去牛客网
登录
/
注册
深呼吸你可以的的博客
全部文章
(共16篇)
题解 | #矩阵计算#
n,m = map(int, input().split()) a = [] summ=0 for i in range(n): a.extend(list(map(int, input().split())))#extend:用于在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的...
Python3
2022-05-04
0
315
题解 | #逆序输出#
方法1: lis = list(map(int, input().split())) print(*lis[::-1]) 方法2: a = input().split()[::-1] print(' '.join(a))
Python3
2022-04-29
0
350
题解 | #正斜线形图案#
while 1: try: a = int(input()) &n...
Python3
2022-04-21
0
391
题解 | #反斜线形图案#
while 1: try: a = int(input()) &n...
Python3
2022-04-20
1
303
题解 | #翻转直角三角形图案#
while 1: try: a = int(input()) &n...
Python3
2022-04-17
0
280
题解 | #直角三角形图案#
while 1: try: a = int(input()) &n...
Python3
2022-04-17
1
329
题解 | #正方形图案#
while 1 : try: a = int(input()) &n...
Python3
2022-04-17
1
375
题解 | #公务员面试#
while 1: try: lis = list(map(int, input().split())) ...
Python3
2022-04-12
0
308
题解 | #变种水仙花#
for i in range(10000,100000): if (i //10000) * (i % 10000) + (i //...
Python3
2022-04-11
0
251
题解 | #牛牛学数列2#
a= int(input()) summ=0 if a ==0: print() else: for i in range(1,a+1): &n...
Python3
2022-04-04
0
305
首页
上一页
1
2
下一页
末页