人生苦短,但求成长
人生苦短,但求成长
全部文章
分类
题解(166)
归档
标签
去牛客网
登录
/
注册
人生苦短,但求成长的博客
全部文章
(共64篇)
题解 | #配置文件恢复#还行吧
while True: try: str_input = input() order_dict = { 'reset': 'reset what', 'reset board': 'board fault', 'board a...
Python3
2022-02-10
2
494
题解 | #查找两个字符串a,b中的最长公共子串#经典动态规划
while True: try: str_input1, str_input2 = input(), input() # 区分一下字符串长短 str1 = str_input1 if len(str_input1) <= len(str_input2) else str...
Python3
2022-02-10
7
1030
题解 | #MP3光标位置#注意跟踪一下当前屏幕的第一首歌曲
while True: try: n = int(input()) str_input = input() # 总数小于等于4时 if n <= 4: # 当前选中歌曲 now = 1 for c in str_i...
Python3
2022-02-10
11
969
题解 | #DNA序列#
while True: try: str_input = input() n = int(input()) gc_ratio_list = [0] * (len(str_input) - n + 1) for i in range(len(gc_r...
Python3
2022-02-09
3
379
题解 | #查找输入整数二进制中1的个数#人生苦短,我用python
while True: try: n = int(input()) m = bin(n).count('1') print(m) except: break
Python3
2022-02-09
1
546
题解 | #放苹果#学习大佬的新奇思路
def fun(m, n): if m < 0 or n <= 0: return 0 if m == 1 or n == 1: return 1 else: return fun(m, n - 1) + fun(m - n, n) while True: tr...
Python3
2022-02-09
3
564
题解 | #查找组成一个偶数最接近的两个素数#
def isSuShu(x): if x <= 2: return True else: for i in range(2, int(x ** 0.5) + 1): if x % i == 0: return Fa...
Python3
2022-02-09
71
5364
题解 | #找出字符串中第一个只出现一次的字符#人生苦短,我用python
while True: try: str_input = input() for c in str_input: if str_input.count(c) == 1: print(c) break e...
Python3
2022-02-09
1
438
题解 | #输入n个整数,输出其中最小的k个#人生苦短,我用python
while True: try: m, n = [int(i) for i in input().split()] num_list = [int(j) for j in input().split()] num_list.sort() n...
Python3
2022-02-09
16
1630
题解 | #高精度整数加法#人生苦短,我用python
while True: try: str1, str2 = input(), input() print(int(str1) + int(str2)) except: break
Python3
2022-02-09
2
1899
首页
上一页
1
2
3
4
5
6
7
下一页
末页