你吃了码
你吃了码
全部文章
分类
归档
标签
去牛客网
登录
/
注册
你吃了码的博客
全部文章
(共3篇)
题解 | 小红的二叉树
import sys deep=int(input().strip()) def f(d): res1=0 res2=0 p1=0 p2=0 if d <=1: return 0 if d==2: return ...
2025-03-10
0
38
题解 | #字符串加密#
import sys key = input() password=input() wordstr="A B C D E F G H I J K L M N O P Q R S T U V W X Y Z" wordlist=wordstr.split(" "...
2024-09-18
0
68
题解 | #合唱队#
import sys num = int(input()) heights = list(map(int, input().split())) resmax = 0 def halpsearch(buffs,key): l,r=0,len(buffs)-1 mid=l whi...
2024-09-04
0
85