法拉利201903231900848
法拉利201903231900848
全部文章
题解
学习笔记(9)
读书笔记(1)
资源(1)
归档
标签
去牛客网
登录
/
注册
法拉利201903231900848的博客
Talk is cheap. Show me the code.
全部文章
/ 题解
(共75篇)
[编程题]访友
x=int(input()) if x>=5: if x%5==0: res=int(x/5)  ...
2019-08-24
0
564
成绩排序
while True: try: num=int(input()) &nb...
2019-08-24
7
1093
24点游戏算法
def f(res,n): total=False if len(n)==1:#递归终止条件 &nb...
2019-08-24
3
1691
配置文件恢复
import sys oneKey='reset' twoKeys=['reset board','board add','board delet','reboot backplane','backplane abort'] do=['board fault','where to add','no ...
2019-08-23
7
1041
查找两个字符串a,b中的最长公共子串
while True: try: s1=input() &nb...
2019-08-23
13
2038
MP3光标位置
while True: try: SongNum=int(input())  ...
2019-08-22
2
1173
DNA序列-字符串求子串
while True: try: s=input() &nbs...
2019-08-22
1
883
查找输入整数二进制中1的个数
while True: try: n=int(input())  ...
2019-08-22
1
931
放苹果
''' 放苹果分为两种情况,一种是有盘子为空,一种是每个盘子上都有苹果。 令(m,n)表示将m个苹果放入n个盘子中的摆放方法总数。 1.假设有一个盘子为空,则(m,n)问题转化为将m个苹果放在n-1个盘子上,即求得(m,n-1)即可 2.假设所有盘子都装有苹果,则每个盘子上至少有一个苹果,即最多剩下...
2019-08-22
358
15571
查找组成一个偶数最接近的两个素数
#从中间开始找的话就是保证两个数差距最小,然后再分别判断两个数是不是质数,就可以了 import math def isPrime(num): for i in range(2,int(math.sqr...
2019-08-22
2
1032
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页