captain_fto
captain_fto
全部文章
分类
题解(54)
归档
标签
去牛客网
登录
/
注册
captain_fto的博客
全部文章
(共35篇)
题解 | #有序序列判断#
先判断原序列是降序还是升序 n=input() num=input().split(" ") nums=list(map(int,num)) if int(nums[1])<int(num[0]): nums_src=nums[::-1] else: nums_src=nums...
Python3
2021-12-19
0
373
题解 | #图像相似度#
while True: try: num=input().split(" ") m,n=map(int,num) pixel_lista=[] pixel_listb=[] same_count=0 ...
Python3
2021-12-19
2
423
题解 | #筛选法求素数#
import math def isPrime(n): for i in range(2,int(math.sqrt(n))+1): if n%i==0: return False return True while True: try...
Python3
2021-12-19
0
450
题解 | #有序序列插入一个数#
total_num=input() num=input().split(" ") nums=list(map(int,num)) insert_num=input() nums.append(int(insert_num)) nums.sort() for i in range(len(nums))...
Python3
2021-12-19
0
278
题解 | #公务员面试#
map后注意list转换 while True: try: score=input().split(" ") scores=list(map(int,score)) avg_score=(sum(scores)-max(scores)-min(...
Python3
2021-12-19
0
360
题解 | #数字三角形#
#双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,i+1): print("{} ".format(j),end="") print() while True...
Python3
2021-12-19
0
330
题解 | #HTTP状态码#
#key非int类型 def http_status(status_code): http_statu={'200':'OK','202':'Accepted','400':'Bad Request','403':'Forbidden','404':'Not Found','500':'In...
Python3
2021-12-19
0
408
题解 | #空心正方形图案#
双层循环 #双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,n+1): if i==1 or i==n or j==1 or j==n: pr...
Python3
2021-12-19
1
368
题解 | #X形图案#
双层循环 #双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,n+1): if i==j or (i+j)==(n+1): print("*",...
Python3
2021-12-19
2
405
题解 | #竞选社长#
count方法 votes=input() if votes.count('A')>votes.count('B'): print("A") elif votes.count('A')<votes.count('B'): print("B") else: prin...
Python3
2021-12-19
0
286
首页
上一页
1
2
3
4
下一页
末页