cfn
cfn
全部文章
分类
归档
标签
去牛客网
登录
/
注册
cfn的博客
全部文章
(共137篇)
题解 | #小乐乐查找数字#
n = int(input()) m = list(map(int, input().split())) x = int(input()) print(m.count(x))
2023-03-11
0
182
题解 | #序列中删除指定数字#
n=int(input()) m=list(map(int,input().split())) a=int(input()) for i in m: if i!=a: print(i,end=" ")
2023-03-11
0
184
题解 | #有序序列插入一个整数#
n=int(input()) m=list(map(int,input().split())) a=int(input()) m.append(a) b=sorted(m) for i in b: print(i,end=" ")
2023-03-11
0
183
题解 | #有序序列判断#
n=int(input()) m=list(map(int,input().split())) if m==sorted(m) or m==sorted(m,reverse=True): print("sorted") else: print("unsorted")
2023-03-11
0
158
题解 | #有序序列合并#
n,m=map(int,input().split()) a=list(map(int,input().split())) b=list(map(int,input().split())) c=sorted(a+b) for i in c: print(i,end=" ")
2023-03-11
0
177
题解 | #争夺前五名#
n=int(input()) m=list(map(int,input().split())) for i in range(len(m)-1): for j in range(len(m)-1-i): if m[j]<m[j+1]: m[j],...
2023-03-09
0
223
题解 | #N个数之和#
a=int(input()) b=list(map(int,input().split())) print(sum(b))
2023-03-05
1
191
题解 | #逆序输出#
a=list(map(int,input().split())) b=a[::-1] for i in b: print(i,end=" ")
2023-03-05
1
211
题解 | #[NOIP2013]记数问题#
n,x=map(int,input().split()) list1=[] for i in range(1,n+1): if str(x) in str(i): list1.append(str(i).count(str(x))) print(sum(list1))
2023-03-05
1
277
题解 | #数字三角形#
while True: try: n=int(input()) for i in range(1,n+1): for j in range(1,i+1): print(j,end=" ") ...
2023-03-05
1
183
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页