不错就是对
不错就是对
全部文章
题解
归档
标签
去牛客网
登录
/
注册
不错就是对的博客
Work hard and be nice to people.
全部文章
/ 题解
(共234篇)
题解 | #有序序列合并#
BC121 有序序列合并 思路: step1:首先将两个列表合并; step2:创建新列表,将合并后的列表里的元素转换为int型添加到新列表中;sort()排序;按序输出打印; 代码如下: n = input().split() ls1 = list(map(str,input().split())...
Python3
2022-03-27
0
397
题解 | ##
BC120 争夺前五名 思路: step1:输入后,用sort()函数倒序排列,然后打印; 代码如下: n = int(input()) ls = list(map(int,input().split(' '))) ls.sort(reverse = True) c = [] for i in ra...
Python3
2022-03-27
0
368
题解 | #最高分与最低分之差#
BC119 最高分与最低分之差 思路: step1:max() min()求出后做差即可; 代码如下: n = int(input()) ls = list(map(int,input().split(' '))) a = max(ls) b = min(ls) print(a-b)
Python3
2022-03-27
0
524
题解 | #N个数之和#
BC118 N个数之和 思路: step1:sum求和即可; 代码如下: n = int(input()) ls = list(map(int,input().split(' '))) print(sum(ls))
Python3
2022-03-27
0
360
题解 | #逆序输出#
BC117 逆序输出 思路: step1:倒序逐个输出; 代码如下: n = input().split(' ') for i in n[::-1]: print(i,end=' ')
Python3
2022-03-27
1
523
题解 | #数字三角形#
数字三角形 思路: step1:i >= j时打印j,以空格隔开; 代码如下: while True: try: n = int(input()) i = 1 while i <= n: j = 1 ...
Python3
2022-03-27
0
395
题解 | #空心三角形图案#
BC112 空心三角形图案 思路: step1:i + j == n+1 or j == n or i == n时打印⭐ ; 代码如下: while True: try: n = int(input()) i = 1 while i <=...
Python3
2022-03-27
0
455
题解 | #空心正方形图案#
BC111 空心正方形图案 思路: step1:i == 1 or i == n or j == n or j == 1时打印⭐ ; 代码如下: while True: try: n = int(input()) i = 1 while i &...
Python3
2022-03-27
0
429
题解 | #X形图案#
BC110 X形图案 思路: step1:i和j相等以及i+j==n+1时,打印; 代码如下: while True: try: n = int(input()) i = 1 while i <= n: j = n...
Python3
2022-03-27
0
449
题解 | #正斜线形图案#
BC109 正斜线形图案 思路: step1:i和j相等时打印; 代码如下: while True: try: n = int(input()) i = 1 while i <= n: j = n ...
Python3
2022-03-27
0
389
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页