牛客464844775号
牛客464844775号
全部文章
分类
题解(51)
归档
标签
去牛客网
登录
/
注册
牛客464844775号的博客
全部文章
(共42篇)
题解 | #截取字符串#
while True: try: l,k=input(),int(input()) print(l[:k]) &nbs...
Python3
2021-11-29
0
340
题解 | #统计字符#
while True: try: L = input() l = [0,0,0,0] for i in ...
Python3
2021-11-29
0
338
题解 | #字符串反转#
while True: try: l = input() print(''.join(reversed(l))) except: &...
Python3
2021-11-28
0
316
题解 | #蛇形矩阵#
while True: try: l = int(input()) s = [] for i in ra...
Python3
2021-11-28
0
307
题解 | #图片整理#
while True: try: l = list(input()) print(''.join(sorted(l))) excep...
Python3
2021-11-28
0
291
题解 | #汽水瓶#
while True: try: i = int(input()) if i != 0: ...
Python3
2021-11-28
0
459
题解 | #等差数列#
def funs(ao,d,n): an = ao + (n-1)*d return (ao+an)*n//2 while True: try: a = in...
Python3
2021-11-28
0
301
题解 | #等差数列#
while True: try: i = int(input()) s = i*(3*i+1)//2 p...
Python3
2021-11-28
0
269
题解 | #记负均正II#
z = [] f = [] while True: try: i = int(input()) if i >= 0: &nbs...
Python3
2021-11-28
0
280
题解 | #求最小公倍数#
while True: try: A,B = map(int,input().split(' ')) min1 = min(A,B) ...
Python3
2021-11-28
0
318
首页
上一页
1
2
3
4
5
下一页
末页