向光而行的小章鱼很想润
向光而行的小章鱼很想润
全部文章
分类
题解(8)
归档
标签
去牛客网
登录
/
注册
向光而行的小章鱼很想润的博客
全部文章
(共8篇)
题解 | #明明的随机数#
好像没毛病 a=[] for i in range(int(input())): a.append(int(input())) for i in sorted(set(a)): print(i)
2022-11-22
0
193
题解 | #输出单向链表中倒数第k个结点#
真不知道 是不是我自己写的 题解也没有一样的 我感觉我写不出来 这种程度 ```while True: try : n,m,k=int(input()),list(input().split()),int(input()) print(m[n-k]...
Python3
2022-03-12
0
258
题解 | #字符串加解密#
懒鬼。。 ```x=input() y=input() m,n='','' A='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' B='BCDEFGHIJKLMNOPQRSTUVWXYZAbcdefghijklmnopq...
Python3
2022-03-12
0
300
题解 | #求最小公倍数#
求最大公因数吧 ```def f(a,b): for i in range(2,min(a,b)+1): if a%i==0 and b%i==0: c.append(i) if len(c)==0: retur...
Python3
2022-03-09
0
190
题解 | #数组分组#
懒鬼思路。。。。 ```while True: try: A="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" B="2223334445556667777888...
Python3
2022-03-09
179
6760
题解 | #数组分组#
有点烦 有些地方 都不知道为什么错 ```def f(n): for i in range(2,int(n**0.5+1)): if n%i==0: return False return True while ...
Python3
2022-03-09
1
288
题解 | #数组分组#
我都是抄的。。。。。 ```def lmx (sum3,sum5,ao): if len(ao)==0: if sum3==sum5: return True else: ...
Python3
2022-03-05
0
348
题解 | #扑克牌大小#
我好菜。。 while True : try : s=input() a= s.split('-')[0] b= s.split('-')[1] a1=a.split() b1=b.split() ...
Python3
2022-03-05
1
298