牛客155969019号
牛客155969019号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客155969019号的博客
全部文章
/ 题解
(共28篇)
题解 | #矩阵乘法#
while True: try: N = int(input()) #A行数 MN = int(input()) #A列B行数 M = int(input()) #B列数 A = [] B = [] ...
Python3
2021-10-18
3
1046
题解 | #成绩排序#
while True: try: n = int(input()) p = -1 if input() == '0' else 1 l1 = [] for i in range(n): s = input...
Python3
2021-10-18
2
521
题解 | #配置文件恢复#
while True: try: str_list = input().split() # print(str_list) key = [('reset','board'),('board','add'),('board','delete'),...
Python3
2021-10-17
0
446
题解 | #查找两个字符串a,b中的最长公共子串#
def fun(str1,str2): if len(str1) > len(str2): #判断,使str1长度小于等于str2 str1, str2 = str2, str1 for i in range(len(str1)-1,-1,-1): # 从str...
Python3
2021-10-17
0
555
题解 | #MP3光标位置#
while True: try: n = int(input()) actions = input() act_dict = {'U':-1,'D':1} #字典操作加减 songs = [str(x) for x in ran...
Python3
2021-10-17
1
1059
题解 | #找出字符串中第一个只出现一次的字符#
while True: try: s = input() for i in s: if s.count(i) == 1: print(i) break e...
Python3
2021-10-17
44
4747
题解 | #输入n个整数,输出其中最小的k个#
while True: try: s = list(map(int, input().split())) num = list(map(int, input().split())) num.sort() num = [str(x...
Python3
2021-10-17
0
454
题解 | #高精度整数加法#
while True: try: n1 = int(input()) n2 = int(input()) print(n1+n2) except: break
Python3
2021-10-17
0
373
题解 | #完全数计算#
""" 1.用完全数性质筛选备选数 (1)所有的完全数都是三角形数。例如:6=1+2+3;28=1+2+3+...+6+7; 496=1+2+3+...+30+31;8128=1+2+3…+126+127。 (2)完全数都是以6或28结尾。(科学家仍未发现由其他数字结尾的完全数。) 2.验证是否为完...
Python3
2021-10-17
15
2358
题解 | #挑7#
while True: try: n = int(input()) c = 0 for i in range(1,n+1): if i % 7 == 0: c += 1 ...
Python3
2021-10-17
30
2952
首页
上一页
1
2
3
下一页
末页