机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
贾明雨
更新时间:
2025-01-15 09:46
浏览:
12次
点赞:
0次
热度:
20
'''N=int(input()) if N>=0 and N%2==0: print("0") else: print("1")'' N=int(input()) s=0 for i in range(1,N+1): s+=i print(s)'' L=list(map(int,input().split(','))) L.sort() L.reverse() L=list(map(str,L)) print(",".join(L))'' L=sorted(list(eval(input())))[::-1] print(",".join(list(map(str,L))))''' n=input().lower() L=input().lower().split(" ") s=0 for i in L: if n==1: s+=1 print(s) if n in L: length=0 d=L.index(n) for j in range(d): length +=len(L[j])+1 print(length) else: print(-1)
点赞成功
分享作品
×