日不落拓海海
日不落拓海海
全部文章
题解
归档
标签
去牛客网
登录
/
注册
日不落拓海海的博客
全部文章
/ 题解
(共58篇)
题解 | #完全数计算#
while True: try: n=int(input()) num =0 for i in range(1,n+1): s=[] for j in range(1,i+1): ...
Python3
2022-02-09
0
389
题解 | #数组分组#
while True: try: n = int(input()) num=list(map(int,input().split())) lst1=[] lst2=[] others = [] f...
Python3
2022-02-08
1
439
题解 | #等差数列#
while True: try: num = list(map(int,input().split())) except: break else: n1,n2=num[0],num[1] if n1>n2:...
Python3
2022-02-08
0
295
题解 | #公共子串计算#
while True: try: s1 = input() s2 = input() except: break else: num=0 if(len(s2)<len(s1)): ...
Python3
2022-01-29
0
317
题解 | #自守数#
while True: try: n = int(input()) output=0 for i in range(n+1): sq=i*i str_sq=str(sq) ...
Python3
2022-01-29
0
290
题解 | #参数解析#
while True: try: words= input() except: break else: str1= str(words) str1=str1.replace(' ', '\n') ...
Python3
2022-01-27
0
326
题解 | #密码强度等级#
import re while True: try: words= input() except: break else: num = len(words) scores =0 dic_c ={...
Python3
2022-01-27
0
413
题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
几个需要注意的点: input().split()需要先分割再运行int,否则是一长串字符 进行 " ".join()时,要先把整数型int转为str while True: try: n1 = int(input()) number = list(map...
Python3
2022-01-27
0
324
题解 | #字符统计#
while True: try: words = input() s = sorted(set(words))// 用 set 去掉多余的数字,进行第一步按ACSII码来排序 ss = sorted(s, key = lambda x:word...
Python3
2022-01-27
0
389
题解 | #表示数字#
方法一: while True: try: s=input() s='a'+s+'a' t='' for i in range(1,len(s)-1): if s[i].isdigit(): ...
Python3
2022-01-26
0
0
首页
上一页
1
2
3
4
5
6
下一页
末页