李耀文3681
李耀文3681
全部文章
分类
题解(87)
归档
标签
去牛客网
登录
/
注册
李耀文3681的博客
全部文章
(共11篇)
题解 | #数据分类处理#
import sys while True: try: I = input().strip().split()[1:] s_r = input().strip().split() #先转成数值排序 R = sorted(list...
数组
字符串
2021-07-14
1
364
题解 | #从单向链表中删除指定值的节点#
import sys while True: try: ss = input().strip().split() n = int(ss[0]) L = [] L.append(ss[1]) c_list = ss...
数组
2021-07-13
0
400
题解 | #查找兄弟单词#
import sys #判断是否兄弟单词 def checkXD(word, x): if len(w) != len(x) or w == x: return False if sorted(word) == sorted(x): return Tr...
字符串
数组
排序
2021-07-12
0
407
题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
import sys while True: try: n = int(input()) L = list(map(int, input().split())) p = input() if p == '0': ...
数组
2021-07-11
0
465
题解 | #记负均正#
import sys while True: try: n = int(input()) L = list(map(int, input().split())) ZL = [] FL = [] for c in ...
数组
2021-07-11
0
433
题解 | #整型数组合并#
import sys while True: try: n1 = int(input()) L1 = list(map(int, input().split())) n2 = int(input()) L2 = list(map...
字符串
数组
排序
2021-07-10
0
376
题解 | #成绩排序#
import sys while True: try: N = int(input()) gz = input() L = [] for i in range(N): L.append(input().s...
字符串
数组
2021-07-10
0
410
题解 | #输入n个整数,输出其中最小的k个#
import sys while True: try: n, k = map(int, input().strip().split()) L = list(map(int, input().strip().split())) L.sort() ...
字符串
数组
2021-07-10
0
425
题解 | #输出单向链表中倒数第k个结点#
import sys while True: try: N = int(input()) L = list(map(int, input().split())) I = int(input()) if I <= 0 or ...
数组
2021-07-10
0
482
题解 | #蛇形矩阵#
#找规律,构建二维数组 #先处理第一列.就是二维数组元素的第一个数 #然后两层循环,利用跟第一个数的关系,构建剩下的元素 #按格式输出二维数组 import sys while True: try: n = int(input()) l = [[1]] ...
数组
2021-07-09
0
400
首页
上一页
1
2
下一页
末页